{
"vetur.format.defaultFormatter.html": "js-beautify-html",
// #每次保存的时候将代码按eslint格式进行修复
"eslint.autoFixOnSave": true,
// vscode默认启用了根据文件类型自动设置tabsize的选项
"editor.detectIndentation": false,
// 重新设定tabsize
"editor.tabSize": 2,
// #每次保存的时候自动格式化
"editor.formatOnSave": true,
"explorer.confirmDelete": false,
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto",
"no-console": "off"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile"
}
网友评论