@ichong/eslint-config
v0.0.14
Published
ESLint config
Downloads
5
Readme
JS ESLint 配置
@ichong
安装
npm i -D @ichong/eslint-config
使用方法
在.eslintrc.js
文件中添加内容:
module.exports = {
extends: [
'@ichong',
// vue项目
// '@ichong', '@ichong/eslint-config/vue'
// '@ichong', '@ichong/eslint-config/vue3'
],
}
VSCode中设置保存自动fix
"eslint.autoFixOnSave": true,
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],