VSCode、ESLint、Prettier (vue)

VSCode、ESLint、Prettier (vue)

eslint 規則 和 prettier 自動修正 (支援 vue)

http://www.ptbird.cn/vscode-autosave-eslint-support-vue.html

設定檔中,eslint.autoFixOnSave 用来进行保存时自动格式化, 但是默认只對 javascript .js 文件作用, eslint.validate 用来配置「作用的文件类型」。

这里很坑的一点是, 支持在 html 和 vue 中自动保存成 eslint 风格的代码要這樣寫:

{
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "html",
            "autoFix": true
        },{
            "language": "vue",
            "autoFix": true
        }
    ]
}

results for ""

    No results matching ""