美文网首页
Vscode配置eslint

Vscode配置eslint

作者: 苦行小哥哥 | 来源:发表于2020-06-07 12:21 被阅读0次

    用到的插件

    • Eslint 需要全局安装 eslint
    npm install -g eslint
    
    • Vetur 提供vue的语法支持,以及格式化
    • 配置文件
    {
        "editor.fontLigatures": true,
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
          },
          "editor.tabSize": 2,
          "eslint.validate": [
            "javascript",
            "javascriptreact",
            "vue",
            "html",
          ],
          "eslint.options": {
            "plugins": [
              "html"
            ]
          },
          "eslint.workingDirectories": [
            "./less_demo"
          ],
    }
    
    

    相关文章

      网友评论

          本文标题:Vscode配置eslint

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