aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-04-09 11:45:09 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-04-09 12:21:54 -0400
commitd2435ead36de361cd6094731f57de076320ec45d (patch)
tree45454a7d73370c70ed86803488425fa12e1594f9 /.jshintrc
parentc6a694e1c262acb941b7fd86663f186656496bbc (diff)
downloadjquery-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--.jshintrc13
1 files changed, 8 insertions, 5 deletions
diff --git a/.jshintrc b/.jshintrc
index 4f0431ddc..13a9e01b9 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -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