Created
January 25, 2011 14:44
-
-
Save zackd/794998 to your computer and use it in GitHub Desktop.
jslint config for QUnit tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** JSLINT CONFIG */ | |
/*jslint white: false, onevar: true, undef: true, nomen: false, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true */ | |
/*global window: false, document: false, $: false, log: false, bleep: false, | |
// QUnit vars | |
QUnit: false, | |
test: false, | |
asyncTest: false, | |
expect: false, | |
module: false, | |
ok: false, | |
equal: false, | |
notEqual: false, | |
deepEqual: false, | |
notDeepEqual: false, | |
strictEqual: false, | |
notStrictEqual: false, | |
raises: false, | |
start: false, | |
stop: false | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!