aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
diff options
context:
space:
mode:
authorTimo Tijhof <krinklemail@gmail.com>2012-11-25 20:30:16 +0100
committerRichard Gibson <richard.gibson@gmail.com>2012-12-06 13:46:37 -0500
commit5dd8a90f734297d51ef74a6c4be23c2a4e43c4df (patch)
treea48254b428fdeab0c15bdfc1233c5745c26cc6b2 /.jshintrc
parent26bf8dd56bfbef54a07cbba519485dcd59add839 (diff)
downloadjquery-5dd8a90f734297d51ef74a6c4be23c2a4e43c4df.tar.gz
jquery-5dd8a90f734297d51ef74a6c4be23c2a4e43c4df.zip
Make compatible with jshint, lint test/data. Close gh-1043.
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc26
1 files changed, 12 insertions, 14 deletions
diff --git a/.jshintrc b/.jshintrc
index 5ff1e697d..4f0431ddc 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -1,16 +1,14 @@
{
- "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
- }
+ "curly": true,
+ "eqeqeq": true,
+ "latedef": true,
+ "noarg": true,
+ "noempty": true,
+ "quotmark": "double",
+ "undef": true,
+ "unused": true,
+ "strict": true,
+ "trailing": true,
+
+ "node": true
}