之前因为一些问题重装了系统,在使用插件自动保存vue代码时会产生自动添加分号,单引号变成双引号等问题,查询了资料将其修改成功,这里把配置代码写一下以方便下次重新使用。
{
"window.zoomLevel": 1,
"editor.mouseWheelZoom": true,
"git.ignoreMissingGitWarning": true,
"editor.fontSize": 18,
"eslint.autoFixOnSave": true,
"prettier.singleQuote": true,
"prettier.semi": false,
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": false,
"singleQuote": true
}
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
来源:CSDN
作者:le45
链接:https://blog.csdn.net/qq_41805273/article/details/104110618