aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-10-16 11:26:14 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-10-16 11:28:11 -0400
commitfcaef889682d6724f7b8e662c66a7539a95ae3d8 (patch)
tree793c66ea0817f3bc9032c7fd5414e6c6c8d56560 /.jshintrc
parent08e134548f70f24cb73f8e1b7a6da39b1995d0ac (diff)
downloadjquery-fcaef889682d6724f7b8e662c66a7539a95ae3d8.tar.gz
jquery-fcaef889682d6724f7b8e662c66a7539a95ae3d8.zip
Clean up jshintrc configs. Close gh-983.
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc24
1 files changed, 14 insertions, 10 deletions
diff --git a/.jshintrc b/.jshintrc
index 1c2f7c2b0..5ff1e697d 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -1,12 +1,16 @@
{
- "curly": true,
- "eqnull": true,
- "eqeqeq": true,
- "expr": true,
- "latedef": true,
- "noarg": true,
- "quotmark": "double",
- "smarttabs": true,
- "trailing": true,
- "undef": true
+ "options": {
+ "curly": true,
+ "eqeqeq": true,
+ "eqnull": true,
+ "expr": true,
+ "latedef": true,
+ "noarg": true,
+ "node": true,
+ "quotmark": "double",
+ "smarttabs": true,
+ "trailing": true,
+ "undef": true,
+ "unused": true
+ }
}