常用.jshintrc备忘

来源:互联网 发布:windows api 绘图 编辑:程序博客网 时间:2024/06/14 10: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/options/    "asi": true,    "browser": true,    "node": true,    "jquery": true,    "esnext": true,    "strict": false,    "globalstrict": true,    "quotmark": true,    "undef": true,    "unused": true,    "scripturl": true,    "globals": {        "define": false,        "module": true,        "export": true,        "console": false    }}
0 0