简体   繁体   中英

Remove ESLint from React project

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?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM