vscode设置保存校验eslint

Posted helena000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode设置保存校验eslint相关的知识,希望对你有一定的参考价值。

{
  "workbench.iconTheme": "material-icon-theme",
  "explorer.confirmDragAndDrop": false,
  "explorer.confirmDelete": false,
  //配置eslint
  "eslint.autoFixOnSave": true, //  启用保存时自动修复,默认只支持.js文件
  "eslint.validate": [
    "javascript", //  用eslint的规则检测js文件
    {
      "language": "vue", // 检测vue文件
      "autoFix": true //  为vue文件开启保存自动修复的功能
    },
    {
      "language": "html",
      "autoFix": true
    },
  ],
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "files.associations": {
  
    "*.cjson": "jsonc",
    "*.wxss": "css",
    "*.wxs": "javascript"
  },
  "emmet.includeLanguages": {
    "wxml": "html"
  },
  "minapp-vscode.disableAutoConfig": true
}

 

以上是关于vscode设置保存校验eslint的主要内容,如果未能解决你的问题,请参考以下文章

vscode设置eslint自动保存代码格式化配置

当我使用 prettier 和 ESLint 在 VSCode 上保存代码时如何设置自动关闭?

vscode代码保存时自动格式化成ESLint风格(支持VUE)

VScode 格式化代码保存时使用ESlint修复代码

vscode 自动 eslint 校验

VSCode 代码风格统一设置eslint + stylelint