未启用SublimeLinter JSHint“SL3上的'功能'后缺少空格”

时间:2014-11-26 19:39:42

标签: jshint sublimelinter

我不知道为什么我的JSHint上的很多东西都没有启用。例如,我确实希望在'功能之后看到缺少空格的警告。警告,但我不是!

我的.jshintrc看起来像:

{
    "white": true,
    "node": true,
    "browser": true,
    "es5": true,
    "esnext": true,
    "bitwise": true,
    "camelcase": false,
    "curly": true,
    "eqeqeq": true,
    "immed": true,
    "indent": 4,
    "latedef": "nofunc",
    "newcap": true,
    "noarg": true,
    "quotmark": "single",
    "regexp": true,
    "undef": true,
    "unused": true,
    "strict": true,
    "trailing": true,
    "smarttabs": true,
    "globals" : {
        "define"  : false,
        "angular" : false,
        "_"       : false,
        "$"       : false,
        "jQuery"  : false,
        "moment"  : false
    }
}

0 个答案:

没有答案