vscode 配置eslint 自动格式化文件
Posted 前端box
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode 配置eslint 自动格式化文件相关的知识,希望对你有一定的参考价值。
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 18,
"workbench.startupEditor": "none",
"vetur.validation.template": true,
"editor.tabSize": 2,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
],
"eslint.alwaysShowStatus": true,
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"eslint.format.enable": true,
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
// "files.eol": "\\n"
}
以上是关于vscode 配置eslint 自动格式化文件的主要内容,如果未能解决你的问题,请参考以下文章