vs code中使用vetur对eslint格式化

1、插件安装

这里需要使用到两个插件EslintVetur

2、设置

打开菜单文件首选项设置首选项,点击右上角打开设置按钮切换到setting.json

打开设置

修改配置如下:

{
  "editor.suggestSelection": "first",
  // vscode默认启用了根据文件类型自动设置tabsize的选项
  "editor.detectIndentation": false,
  // 重新设定tabsize
  "editor.tabSize": 2,
  // #每次保存的时候自动格式化 
  "editor.formatOnSave": true,
  // #每次保存的时候将代码按eslint格式进行修复
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  }
  // 添加 vue 支持
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    {
      "language": "vue",
      "autoFix": true
    },
    {
      "language": "html",
      "autoFix": true
    }
  ],
  //  #让函数(名)和后面的括号之间加个空格
  "javascript.format.insertSpaceBeforeFunctionParenthesis": false,
  // #这个按用户自身习惯选择 
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  // #让vue中的js按编辑器自带的ts格式进行格式化 
  "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.format.defaultFormatterOptions": {
    "prettier": {
      // 使用单引号
      "semi": false
    },
    "js-beautify-html": {
      // html不换行
      "wrap_line_length": 250,
      "wrap_attributes": "auto",
      "end_with_newline": false
    }
  },
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
}

你可能感兴趣的:(vs code中使用vetur对eslint格式化)