sublime jsHint 配置文件

来源:互联网 发布:樱井知香2010年番号 编辑:程序博客网 时间:2024/06/04 00:52
{    // 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"}
0 0