You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to upgrade my company's custom eslint config library from 9.1.0 to 10.0.1. Since we depend on air-bnb rules we are stuck using eslint v8. According to the package.json for eslint-config-prettier, it supports eslint 7, 8 and 9. When we attempt to upgrade, we see the following error running the linter:
npm run lint
> eslint-config-test@0.0.0-auto-updated lint
> ./node_modules/.bin/eslint --ext ts,tsx src/
Oops! Something went wrong! :(
ESLint: 8.57.1
ESLint couldn't find the config "prettier/prettier" to extend from. Please check that the name of the config is correct.
The config "prettier/prettier" was referenced from the config file in "/Users/heath.chiavettone/dev/public/eslint-config-test/package.json".
If you still have problems, please stop by https://eslint.org/chat/help to chat with the team.
I am uploading a very simplified version of my library that demonstrates the problem.
Issue
I am trying to upgrade my company's custom eslint config library from
9.1.0
to10.0.1
. Since we depend onair-bnb
rules we are stuck usingeslint v8
. According to thepackage.json
foreslint-config-prettier
, it supports eslint 7, 8 and 9. When we attempt to upgrade, we see the following error running the linter:I am uploading a very simplified version of my library that demonstrates the problem.
Steps to Reproduce:
npm install && npm run lint
eslint-config-prettier
to10.0.1
npm install && npm run lint
Reproducible test case
eslint-config-prettier-bug.tgz
The text was updated successfully, but these errors were encountered: