diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2012-11-25 20:30:16 +0100 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2012-12-06 13:46:37 -0500 |
commit | 5dd8a90f734297d51ef74a6c4be23c2a4e43c4df (patch) | |
tree | a48254b428fdeab0c15bdfc1233c5745c26cc6b2 /.jshintrc | |
parent | 26bf8dd56bfbef54a07cbba519485dcd59add839 (diff) | |
download | jquery-5dd8a90f734297d51ef74a6c4be23c2a4e43c4df.tar.gz jquery-5dd8a90f734297d51ef74a6c4be23c2a4e43c4df.zip |
Make compatible with jshint, lint test/data. Close gh-1043.
Diffstat (limited to '.jshintrc')
-rw-r--r-- | .jshintrc | 26 |
1 files changed, 12 insertions, 14 deletions
@@ -1,16 +1,14 @@ { - "options": { - "curly": true, - "eqeqeq": true, - "eqnull": true, - "expr": true, - "latedef": true, - "noarg": true, - "node": true, - "quotmark": "double", - "smarttabs": true, - "trailing": true, - "undef": true, - "unused": true - } + "curly": true, + "eqeqeq": true, + "latedef": true, + "noarg": true, + "noempty": true, + "quotmark": "double", + "undef": true, + "unused": true, + "strict": true, + "trailing": true, + + "node": true } |