ESlint不允许我运行React应用

问题描述

我有一个React应用程序,我在安装ESlint之前就构建了几个月。使用npm start运行应用程序时,我现在收到一系列奇怪的错误消息。我已经尝试了列出的所有问题来解决此问题,但问题仍然存在。我想问问是否有人有任何见识。

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.

The react-scripts package provided by Create React App requires a dependency:

  "eslint": "^6.6.0"

Don't try to install it manually: your package manager does it automatically.
However,a different version of eslint was detected higher up in the tree:

  /Users/andrew/node_modules/eslint (version: 7.6.0) 

Manually installing incompatible versions is kNown to cause hard-to-debug issues.

If you would prefer to ignore this check,add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree,try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "eslint" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn,depending on the package manager you use.

In most cases,this should be enough to fix the problem.
If this has not helped,there are a few other things you can try:

  5. If you used npm,install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
     This may help because npm has kNown issues with package hoisting which may get resolved in future versions.

  6. Check if /Users/andrew/node_modules/eslint is outside your project directory.
     For example,you might have accidentally installed something in your home folder.

  7. Try running npm ls eslint in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed eslint.

If nothing else helps,add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We kNow this message is long but please read the steps above :-) We hope you find them helpful!

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! in-your-words@0.1.0 start: `PORT=8000 react-scripts start`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the in-your-words@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/andrew/.npm/_logs/2020-08-28T21_00_29_280Z-debug.log

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)