Remove ESLint from React project

Viewed 16344

I configured ESLint to my project using eslint --init, it's configured to my project.

Now I want to remove that from my project because it's showing unnecessary errors over the project.

How to remove the initiated ESLint from my project?

2 Answers

Basically, just delete .eslintrc and any other eslint config files(if any) from the project.

Also, check your package.json and delete all eslint packages and do npm install on your project.

Also, if you are using vscode, you can disable it with a simple setting

You will have to remove the .eslintrc file and also remove the devdependencies eslint, eslint-plugin-react from your package.json

Related