vscode---eslint配置

设置–用户–扩展–ESlint–settings.json
{
“editor.codeActionsOnSave”: {
"source.fixAll ": true,
“source.fixAll.eslint”: true
},
“window.zoomLevel”: -1,
“vetur.format.defaultFormatter.html”: “js-beautify-html”,
“vetur.format.defaultFormatter.js”: “none”,
“vetur.format.defaultFormatterOptions”: {
“js-beautify-html”: {
“wrap_line_length”: 120,
“wrap_attributes”: “auto”,
“end_with_newline”: false
}
}

}

你可能感兴趣的:(vscode---eslint配置)