如何在 vue-cli 中禁用 ESLint?截至 :2019, March

2022-08-30 05:35:40

如何在生成的项目中禁用 ?ESlintvue-cli

preLoaders: [
  {
    test: /\.vue$/,
    loader: 'eslint',
    include: projectRoot,
    exclude: /node_modules/
  },
  {
    test: /\.js$/,
    loader: 'eslint',
    include: projectRoot,
    exclude: /node_modules/
  }
]

如果我删除该行,它将不会编译,与将其设置为空字符串相同。我知道我可以在初始化阶段选择退出,但是如何在创建项目后禁用它?loader: 'eslint'ESLint


答案 1

这里有一些过时的答案。

因为 vue-cli 3 使用的是零配置方法,所以禁用它的方法是卸载模块:

npm remove @vue/cli-plugin-eslint

答案 2

截至 :2019, March

在:vue.config.js

module.exports = {
  ...
  lintOnSave: false
  ...
}