aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Benner <admin@stevenbenner.com>2013-02-27 23:03:17 -0800
committerDave Methvin <dave.methvin@gmail.com>2013-03-25 21:41:34 -0400
commit237413e75dd3c4b76b0f9ced117f1c9c9cb98ac5 (patch)
tree5aba2f6aece745f6d566e49c3c5d29776ae8e021 /test
parentf319f42db073a0c5cc6d2fc17f40d0093547edcd (diff)
downloadjquery-237413e75dd3c4b76b0f9ced117f1c9c9cb98ac5.tar.gz
jquery-237413e75dd3c4b76b0f9ced117f1c9c9cb98ac5.zip
Changed .jshintrc predef lists to globals objects.
Diffstat (limited to 'test')
-rw-r--r--test/.jshintrc74
1 files changed, 37 insertions, 37 deletions
diff --git a/test/.jshintrc b/test/.jshintrc
index 76e215f1e..5e4f23fc7 100644
--- a/test/.jshintrc
+++ b/test/.jshintrc
@@ -15,41 +15,41 @@
"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": true,
+ "jQuery": true,
+ "QUnit": true,
+ "module": true,
+ "ok": true,
+ "equal": true,
+ "test": true,
+ "asyncTest": true,
+ "notEqual": true,
+ "deepEqual": true,
+ "strictEqual": true,
+ "notStrictEqual": true,
+ "start": true,
+ "stop": true,
+ "expect": true,
+ "raises": true,
+ "ajaxTest": true,
+ "testIframe": true,
+ "testIframeWithCallback": true,
+ "createDashboardXML": true,
+ "createXMLFragment": true,
+ "moduleTeardown": true,
+ "testFoo": true,
+ "url": true,
+ "t": true,
+ "q": true,
+ "amdDefined": true,
+ "fireNative": true,
+ "Globals": true,
+ "hasPHP": true,
+ "isLocal": true,
+ "originaljQuery": true,
+ "$": true,
+ "original$": true,
+ "externalHost": true
+ }
}