diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:45:09 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 12:21:54 -0400 |
commit | d2435ead36de361cd6094731f57de076320ec45d (patch) | |
tree | 45454a7d73370c70ed86803488425fa12e1594f9 /.jshintrc | |
parent | c6a694e1c262acb941b7fd86663f186656496bbc (diff) | |
download | jquery-d2435ead36de361cd6094731f57de076320ec45d.tar.gz jquery-d2435ead36de361cd6094731f57de076320ec45d.zip |
Update jshintrc to conform to new style guide. Conform to onevar and unused in tests. Fixes #13755.
Conflicts:
src/.jshintrc
src/data.js
test/unit/attributes.js
test/unit/core.js
test/unit/data.js
test/unit/event.js
test/unit/manipulation.js
test/unit/queue.js
test/unit/traversing.js
test/unit/wrap.js
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 |