vscode关于vetur的配置相关

喜夏-厌秋 提交于 2020-01-30 00:05:23

之前因为一些问题重装了系统,在使用插件自动保存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
  }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!