aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2012-06-25 10:49:21 -0400
committerRick Waldron <waldron.rick@gmail.com>2012-06-25 10:49:21 -0400
commit96246332f723b0f83e465d0f9f580741c8272f80 (patch)
tree203fc3de5e286c17c91eb0a421e6a2072398d5ec /src/.jshintrc
parentc436ae04de80f8d232b5456f605331ecfaba4f49 (diff)
downloadjquery-96246332f723b0f83e465d0f9f580741c8272f80.tar.gz
jquery-96246332f723b0f83e465d0f9f580741c8272f80.zip
Adds .jshintrc files for: grunt (default set), src, tests; Adapts jQuery-UI loading method
Diffstat (limited to 'src/.jshintrc')
-rw-r--r--src/.jshintrc27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/.jshintrc b/src/.jshintrc
new file mode 100644
index 000000000..faf031dfd
--- /dev/null
+++ b/src/.jshintrc
@@ -0,0 +1,27 @@
+{
+ "options": {
+ "evil": true,
+ "browser": true,
+ "wsh": true,
+ "eqnull": true,
+ "expr": true,
+ "curly": true,
+ "trailing": true,
+ "undef": true,
+ "smarttabs": true,
+ "maxerr": 100
+ },
+ "globals": {
+ "define": true,
+ "DOMParser": true,
+ "__dirname": true,
+ "jQuery": true,
+ "global": true,
+ "module": true,
+ "exports": true,
+ "require": true,
+ "file": true,
+ "log": true,
+ "console": true
+ }
+}