settings.json
364 Bytes
{
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"eslint.enable": true, // 是否开启检测
"editor.tabSize": 2,
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"eslint.validate": [
"vue",
"javascript",
"html",
"vue"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}