diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-10-16 11:26:14 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-10-16 11:28:11 -0400 |
commit | fcaef889682d6724f7b8e662c66a7539a95ae3d8 (patch) | |
tree | 793c66ea0817f3bc9032c7fd5414e6c6c8d56560 /src/.jshintrc | |
parent | 08e134548f70f24cb73f8e1b7a6da39b1995d0ac (diff) | |
download | jquery-fcaef889682d6724f7b8e662c66a7539a95ae3d8.tar.gz jquery-fcaef889682d6724f7b8e662c66a7539a95ae3d8.zip |
Clean up jshintrc configs. Close gh-983.
Diffstat (limited to 'src/.jshintrc')
-rw-r--r-- | src/.jshintrc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/.jshintrc b/src/.jshintrc index d75461017..2ce0eca6f 100644 --- a/src/.jshintrc +++ b/src/.jshintrc @@ -1,17 +1,17 @@ { "options": { - "evil": true, "browser": true, - "wsh": true, + "curly": true, "eqnull": true, + "evil": true, "expr": true, - "curly": true, - "trailing": true, - "undef": true, + "maxerr": 100, + "quotmark": "double", "smarttabs": true, "sub": true, - "maxerr": 100, - "quotmark": "double" + "trailing": true, + "undef": true, + "wsh": true }, "globals": { "define": true, |