vue在vscode中使用esLIint

1、在vscode添加 eslint 插件

2、在vscode添加 vetur 插件

3、修改你的setting.json

{

    "editor.formatOnSave": false,

    "eslint.autoFixOnSave": true,

    "eslint.validate": [

        "javascript",{

            "language": "vue",

            "autoFix": true

        },

        "html",

        "vue"

    ]

}

你可能感兴趣的:(vue在vscode中使用esLIint)