代码拉取完成,页面将自动刷新
为Vscode 添加 airbnb javascript style guide
1. 在Vscode的插件系统里安装Eslint,重启Vscode
2. 安装npm套件:npm install -g eslint
3. 输入eslint --init
4. 选择主流的Use a popular style guide
5. 可能会提示你npm init,回车到底即可
6. 重新eslint --init后,出现
Google
Airbnb:我选这个,如果选此选项,会多问一个:是否使用 React,我选否
Standard
7. 选择json格式,看个人喜好了
8. 重启vscode
重点是在第7步生成的json文件里怎么去配置:
"extends": "airbnb-base",
"globals": {
"cc":false,
"window":false,
"G":false,
"dragonBones":false,
"Notification":false
},
"rules": {
"linebreak-style":0,
"indent": [1, 4, {"SwitchCase": 1}],
"spaced-comment":["error", "always"],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"prefer-template": "error",
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
"no-unused-vars": "off",
"no-empty": "off",
"no-console": "off",
"radix": 0,
"no-restricted-syntax": 0,
"func-names": ["error", "never"],
"prefer-arrow-callback": "off",
"max-len":"off"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。