18

I am not interested in the stupid lint, which is not workable at all. It can do nothing but waste of my time.

I need a way to remove it and make sure ESLint will never appear again. What should I do? Please don't tell me to put a comment in my code to disable one warning. I need a solution to completely get rid of ESLint in vue cli 3 generated project.

Nicolas S.Xu
  • 13,794
  • 31
  • 84
  • 129
  • 2
    Possible duplicate of [How to disable ESLint in vue-cli?](https://stackoverflow.com/questions/38757069/how-to-disable-eslint-in-vue-cli) – Fcmam5 Aug 16 '18 at 01:06

3 Answers3

12
  1. Remove all references to eslint in package.json ("@vue/eslint-config-x" and "@vue/cli-plugin-eslint")
  2. Remove .eslintrc or eslintconfig in your project root dir
  3. run npm i
0

If Vue generated a config file for your project, you can look inside the config\index.js file and change useEslint to be false, as such: useEslint: false

jakobinn
  • 1,832
  • 1
  • 20
  • 20
0

setting useEslint: false, in

config/index.js

did the trick for me