diff --git a/support/jshint/jshintconfig b/support/jshint/jshintconfig index e753307f4..900cf7d11 100644 --- 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 }