diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-07-11 12:52:07 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-07-11 12:59:44 -0400 |
commit | 4b7a0d4e0afa11db4ed523c2c1f4ffc3b2cc2823 (patch) | |
tree | 2bc9e050fb65aba37f8ef4d543b110267042bb42 /test/.jshintrc | |
parent | b7ea5c0f35d3f9e29480a849f1f78308e56067c7 (diff) | |
download | jquery-4b7a0d4e0afa11db4ed523c2c1f4ffc3b2cc2823.tar.gz jquery-4b7a0d4e0afa11db4ed523c2c1f4ffc3b2cc2823.zip |
Update devDependencies, adjust .jshintrc to jsHint 2.x, use .jshintignore. Close gh-1283.
Conflicts:
src/.jshintrc
test/.jshintrc
Diffstat (limited to 'test/.jshintrc')
-rw-r--r-- | test/.jshintrc | 75 |
1 files changed, 38 insertions, 37 deletions
diff --git a/test/.jshintrc b/test/.jshintrc index db5851c4e..75c50eeeb 100644 --- a/test/.jshintrc +++ b/test/.jshintrc @@ -20,41 +20,42 @@ "devel": true, "wsh": true, - "predef": [ - "DOMParser", - "jQuery", - "QUnit", - "module", - "ok", - "equal", - "test", - "asyncTest", - "notEqual", - "deepEqual", - "strictEqual", - "notStrictEqual", - "start", - "stop", - "expect", - "raises", - "ajaxTest", - "testIframe", - "testIframeWithCallback", - "createDashboardXML", - "createXMLFragment", - "moduleTeardown", - "testFoo", - "url", - "t", - "q", - "amdDefined", - "fireNative", - "Globals", - "hasPHP", - "isLocal", - "originaljQuery", - "$", - "original$", - "externalHost" - ] + "globals": { + "DOMParser": false, + "QUnit": false, + "ok": false, + "equal": false, + "asyncTest": false, + "notEqual": false, + "deepEqual": false, + "strictEqual": false, + "notStrictEqual": false, + "start": false, + "stop": false, + "expect": false, + "raises": false, + "ajaxTest": false, + "testIframe": false, + "testIframeWithCallback": false, + "createDashboardXML": false, + "createXMLFragment": false, + "moduleTeardown": false, + "testFoo": false, + "url": false, + "t": false, + "q": false, + + "jQuery": true, + "module": true, + "test": true, + "amdDefined": true, + "fireNative": true, + "Globals": true, + "hasPHP": true, + "isLocal": true, + "originaljQuery": true, + "$": true, + "original$": true, + "externalHost": true + } } |