1

I did some research, but could not find a quick fix to this situation:

eslint

Vue-cli 3.4.0 - Webpack 4.29.0
  • My project does not have config/index.js as mentioned here.
  • I tried to open vue.config.js and disable eslint does not work.
  • I removed the cli-plugin-eslint package.
  • Don't have .eslintrc.js.
  • Could not find any other configuration about eslint in project.

--- Fix ---

I realize that I didn't control my settings well. It was built in vetur.

disable vetur eslint

berkan
  • 722
  • 1
  • 7
  • 23

1 Answers1

5

the easiest way to ignore eslint is to ignore the files you dont want to be linted. For example, create .eslintignore in your project root folder. then just add the following folder which you dont want to lint like, add src\

holla
  • 141
  • 1
  • 9