diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:45:09 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:59:31 -0400 |
commit | 0fa52c11cbfe70780648b99717f1dd3502befaff (patch) | |
tree | 9cd6bfc3b17ae21385aeebd32205d7281934fa17 /.jshintrc | |
parent | 0afc92bd73a61a0279a419647458e6ed89638ae0 (diff) | |
download | jquery-0fa52c11cbfe70780648b99717f1dd3502befaff.tar.gz jquery-0fa52c11cbfe70780648b99717f1dd3502befaff.zip |
Update jshintrc to conform to new style guide. Conform to onevar and unused in tests. Fixes #13755.
Diffstat (limited to '.jshintrc')
-rw-r--r-- | .jshintrc | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,14 +1,17 @@ { + "boss": true, "curly": true, "eqeqeq": true, - "latedef": true, + "eqnull": true, + "expr": true, + "immed": true, "noarg": true, - "noempty": true, + "onevar": true, "quotmark": "double", + "smarttabs": true, + "trailing": true, "undef": true, "unused": true, - "strict": true, - "trailing": true, "node": true -} +}
\ No newline at end of file |