vscode设置

vscode的设置:

// 将设置放入此文件中以覆盖默认设置
{
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
},
"workbench.editorAssociations": [

]
}

你可能感兴趣的:(工具使用,vscode,前端)