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 11:59:31 -0400
commit0fa52c11cbfe70780648b99717f1dd3502befaff (patch)
tree9cd6bfc3b17ae21385aeebd32205d7281934fa17 /.jshintrc
parent0afc92bd73a61a0279a419647458e6ed89638ae0 (diff)
downloadjquery-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--.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