webank ESLint 规则
在线浏览规则描述及示例:https://cloud.tencent.com/developer/section/1135602
使用方法
安装
npm i -D @webank/eslint-config-ts
代码格式
在项目的根目录下创建 .prettierrc.js
,并将一下内容复制到文件中:
module.exports = {
...require("@webank/eslint-config-ts/.prettierrc.js"),
};
标准规则
在项目根目录下创建 .eslintrc.js
,并将以下内容复制到文件中:
module.exports = {
extends: ['@webank/eslint-config-ts'],
globals: {
},
rules: {
},
};
Vue
在你的项目根目录下创建 .eslintrc.js
,并将以下内容复制到文件中:
module.exports = {
extends: ['@webank/eslint-config-ts/vue'],
globals: {
},
rules: {
},
};
编辑器
VSCode install prettier
直接搜索安装。代码格式化选择 prettier。
VSCode install eslint
VSCode 对扩展(插件)的支持非常友好,在 VSCode 中使用 eslint 需要 「扩展 > 搜索 eslint > 安装」,按照提示重新加载窗口即可以使用
在 VSCode 中使用
在 VSCode 中,默认 ESLint 并不能识别 .vue
、.ts
或 .tsx
文件,需要在「文件 => 首选项 => 设置」里做如下配置:
{
"eslint.validate": ["javascript", "javascriptreact", "html", "vue"]
}
VSCode 中的 autoFixOnSave 没有效果
如果需要针对 .vue
、.ts
和 .tsx
文件开启 ESLint 的 autoFix,则需要配置成:
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{
"language": "vue",
"autoFix": true
}
]
}
参考