Remove ESLint from React project

陌路散爱 提交于 2021-01-28 14:01:16

问题


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?


回答1:


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



来源:https://stackoverflow.com/questions/62388940/remove-eslint-from-react-project

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!