今天React设置eslint
的时候出了一个错误,
There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally.
这个错误很简单就是
react-script
这个库不支持太高版本的eslint
我们安装会6.6.0就可以了解决方法
npm uninstall --save eslint
npm i --save-dev eslint@6.6.0
项目成功运行