vsCode 中给vue项目配置 eslint
{/* 关闭编辑器自带保存格式化功能,此功能会用Vetur进行格式化。*/"editor.formatOnSave": false,"editor.codeActionsOnSave": {"source.fixAll.eslint": true},"eslint.alwaysShowStatus": true,"eslint.options": {"extensions": [".js",".v
·
{
// 编辑主题
"workbench.colorTheme": "Atom One Dark",
// 避免默认 Vetur 模板验证
"vetur.validation.template": false,
"eslint.validate": ["javascript", "javascriptreact", "vue"],
// #每次保存的时候自动格式化
"editor.formatOnSave": true,
// .vue 使用ESlint 格式化代码
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
// .typescript 使用ESlint 格式化代码
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"window.zoomLevel": 1,
"explorer.confirmDelete": false,
// 启用ESlint作为格式化工具
"eslint.format.enable": true,
"cssrem.rootFontSize": 80,
"bracket-pair-colorizer-2.depreciation-notice": false,
// 自动更新vscode
"update.mode": "none",
// 自动拓展插件更新
"extensions.autoUpdate": false
}
更多推荐
已为社区贡献1条内容
所有评论(0)