vscode vue项目中关闭eslint的方法

​前端

1.在项目根目录下增加vue.config.js文件。
内容如下:

// vue.config.js
module.exports = {
    lintOnSave: false
}

  • 2.然后就是在vsvode中关闭eslint

文件>首选项>设置>扩展

vscode vue项目中关闭eslint的方法_第1张图片

 把enable的值改为false

3.再取消勾选Enablse ESLint as formatter  vscode vue项目中关闭eslint的方法_第2张图片

 

你可能感兴趣的:(vue.js)