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 /test/.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 'test/.jshintrc')
-rw-r--r-- | test/.jshintrc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/.jshintrc b/test/.jshintrc index 5e4f23fc7..f92ff88cd 100644 --- a/test/.jshintrc +++ b/test/.jshintrc @@ -1,14 +1,19 @@ { + "boss": true, "curly": true, + "eqeqeq": true, + "eqnull": true, "expr": true, + "immed": true, + "noarg": true, + "onevar": true, "quotmark": "double", + "smarttabs": true, "trailing": true, "undef": true, - "maxerr": 100, + "unused": true, - "eqnull": true, "evil": true, - "smarttabs": true, "sub": true, "browser": true, |