diff --git a/support/jshint/jshintconfig b/support/jshint/jshintconfig
--- a/support/jshint/jshintconfig
+++ b/support/jshint/jshintconfig
@@ -1,5 +1,22 @@
 {
-  "expr" : true,
-  "loopfunc" : true,
-  "sub" : true
+  "bitwise": true,
+  "curly": true,
+  "immed": true,
+  "indent": 2,
+  "latedef": true,
+  "newcap": true,
+  "noarg": true,
+  "quotmark": "single",
+  "undef": true,
+  "unused": true,
+
+  "expr": true,
+  "loopfunc": true,
+  "sub": true,
+
+  "globals": {
+    "JX": false,
+    "__DEV__": false
+  },
+  "browser": true
 }