How to disable ESLint in Vue CLI?

Sometimes, we want to disable ESLint in Vue CLI.

In this article, we’ll look at how to disable ESLint in Vue CLI.

How to disable ESLint in Vue CLI?

To disable ESLint in Vue CLI, we just remove the @vue/cli-plugin-eslint package from the Vue CLI project.

We run

npm remove @vue/cli-plugin-eslint

to remove the @vue/cli-plugin-eslint package, which will disable ESLint in the Vue CLI project.

Conclusion

To disable ESLint in Vue CLI, we just remove the @vue/cli-plugin-eslint package from the Vue CLI project.