1 Star 0 Fork 0

猴子0532/Docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
20190108-添加Eslint airbnb javascript style guide 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
为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"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenyu0532/Docs.git
git@gitee.com:chenyu0532/Docs.git
chenyu0532
Docs
Docs
master

搜索帮助