404 Not Found when trying to install ESLint 8.4.4 with create-react-app

There is an issue with v.8.4.4 on the NPM

Change your package.json and use 8.4.3 instead!

Pin it in “resolutions” for yarn

  "resolutions": {
    "@types/eslint": "8.4.3"
  }

or “overrides” for npm

  "overrides": {
    "@types/eslint": "8.4.3"
  }

more info about overriding values in NPM:
How do I override nested NPM dependency versions?

more about issue (check it here):

something went wrong

Leave a Comment