导航栏: 首页 评论列表

sublime jsHint 配置文件

默认分类 2014/09/23 18:36

配置如下:

{
    // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
    // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
    // Documentation: http://www.jshint.com/docs/
    "browser": true,
    "esnext": true,
    "globals": {
        "fs": true
    },
    "globalstrict": true,
    "quotmark": true,
    "smarttabs": true,
    "trailing": true,
    "undef": true,
    "unused": true,
    "curly": false,
    "shadow": true,
    "eqeqeq": false,
    "expr": true,
    "supernew": false,
    "evil": true,
    "newcap": false,
    "sub": true,
    "nonstandard": true,
    "unused": "vars"
}


>> 留言评论