vue-cil3关闭eslint语法检查

1. 你可以将package.json中关于eslint的配置删除

2. 在你的项目目录中 新建 vue.config.js文件

module.exports = {
  lintOnSave: false, // 关闭 eslint检查
};

你的eslint语法检查就 good bay 了

相关推荐