美文网首页
vs code 按照 eslint风格自动格式化代码

vs code 按照 eslint风格自动格式化代码

作者: locky丶 | 来源:发表于2020-04-06 15:31 被阅读0次

    vs code 的自动格式化与eslint不相符,每次修改都要手动去改,十分浪费时间。

    实现一致格式很方便,我们只要先关闭vs code的自动格式化,然后打开 setting.json文件,加入如下配置即可。

    // #每次保存的时候将代码按eslint格式进行修复
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "eslint.validate": [
            "vue",
            "html",
            "javascript",
            "typescript",
            "javascriptreact",
            "typescriptreact"
        ],
        "files.associations": {
            "*.vue": "vue"
        },
        "eslint.options": {
            "extensions": [
                ".js",
                ".vue"
            ]
        },
        "search.exclude": {
            "**/node_modules": true,
            "**/bower_components": true,
            "**/dist": true
        },
        "emmet.syntaxProfiles": {
            "javascript": "jsx",
            "vue": "html",
            "vue-html": "html"
        },
    

    相关文章

      网友评论

          本文标题:vs code 按照 eslint风格自动格式化代码

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