美文网首页VUE
vscode配置eslint保存时自动格式化

vscode配置eslint保存时自动格式化

作者: LL天HH土 | 来源:发表于2021-03-25 09:23 被阅读0次

    ESLint 是一个代码规范和错误检查工具,有以下几个特性

    所有东西都是可以插拔的。你可以调用任意的rule api或者formatter api 去打包或者定义rule or formatter。
    任意的rule 都是独立的
    没有特定的coding style,你可以自己配置

    下面介绍一下vsCode中ESLint的安装配置步骤

    安装eslint插件

    20201207172149548.png

    配置settings.json,设置启用eslint自动格式化

    • 点击文件 -->首选项 -->设置


      20201207173529254.png
    • 进去后点击右上角,打开settings.json


      20201207173626221.png
    • 将下面代码复制进去并保存退出

    {
      // vscode默认启用了根据文件类型自动设置tabsize的选项
      "editor.detectIndentation": false,
      // 重新设定tabsize
      "editor.tabSize": 2,
      // #每次保存的时候自动格式化 
      "editor.formatOnSave": false,
      // #每次保存的时候将代码按eslint格式进行修复
      "eslint.autoFixOnSave": true,
      // 添加 vue 支持
      "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
          "language": "vue",
          "autoFix": true
        }
      ],
      //  #让prettier使用eslint的代码格式进行校验 
      "prettier.eslintIntegration": true,
      //  #去掉代码结尾的分号 
      "prettier.semi": false,
      //  #使用带引号替代双引号 
      "prettier.singleQuote": true,
      //  #让函数(名)和后面的括号之间加个空格
      "javascript.format.insertSpaceBeforeFunctionParenthesis": false,
      // #这个按用户自身习惯选择 
      "vetur.format.defaultFormatter.html": "js-beautify-html",
      // #让vue中的js按编辑器自带的ts格式进行格式化 
      "vetur.format.defaultFormatter.js": "vscode-typescript",
      "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
          "wrap_attributes": "force-aligned"
          // #vue组件中html代码格式化样式
        }
      },
      // 格式化stylus, 需安装Manta's Stylus Supremacy插件
      "stylusSupremacy.insertColons": false, // 是否插入冒号
      "stylusSupremacy.insertSemicolons": false, // 是否插入分好
      "stylusSupremacy.insertBraces": false, // 是否插入大括号
      "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
      "stylusSupremacy.insertNewLineAroundBlocks": false,
      "editor.suggestSelection": "first",
      "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
      "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
      },
      "window.zoomLevel": 1,
      "git.enableSmartCommit": true,
      "git.confirmSync": false,
      "explorer.confirmDelete": false,
      "explorer.confirmDragAndDrop": false,
      "workbench.editorAssociations": [
        {
          "viewType": "jupyter.notebook.ipynb",
          "filenamePattern": "*.ipynb"
        }
      ],
      "editor.formatOnPaste": true,
      "editor.formatOnType": true // 两个选择器中是否换行
    }
    
    • 完成以上配合后,当按Ctrl+S时,即可对当前打开文件自动进行格式化

    参考:https://blog.csdn.net/qq_41999034/article/details/110822965

    相关文章

      网友评论

        本文标题:vscode配置eslint保存时自动格式化

        本文链接:https://www.haomeiwen.com/subject/fzklhltx.html