-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: Key "plugins": Cannot redefine plugin "react" #3765
Comments
ESLint v9 isn't supported yet. Either roll back to 8.57 or you can try working around it with @eslint/compat, but that's not guaranteed to work. |
This happens because eslint-plugin-react's flat configs have their own A quick fix in your eslint.config.js would be to remove one of these two plugin definitions: - plugins: {
- react,
- }, Nevertheless, I think that eslint-plugin-react should be fixed so that it always uses the same plugin object. |
@mdjermanovic what would be the impact of that change? |
Either way, closing, because you simply can't use eslint 9 with a plugin that doesn't declare peerDep compatibility with it. Wait to upgrade eslint until all your things support it explicitly. |
This can be fixed in a way that wouldn't be a breaking change for eslint-plugin-react. We could include the fix in #3759. Note that this isn't eslint 9 specific. the same problem exists with eslint-plugin-react + eslint 8 flat config. |
Thanks; in that case let's land it in its own PR? |
Makes sense, I can prepare a separate PR for this issue. I mentioned #3759 because it adds tests with flat configs (ef6f9c5 for the start) which seem particularly useful for this problem, but those tests can be extracted into the other PR and run with eslint >= 8.57.0 instead of just >= 9. |
Also perhaps #3694 is a good fit for it. |
The existing imports would need to keep working the same for eslintrc users. I'm not sure what that would entail. |
Is there an existing issue for this?
Description Overview
I have this error when runing eslint: Key "plugins": Cannot redefine plugin "react"
here is my eslint.confi.js
Expected Behavior
Should have no errors
eslint-plugin-react version
7.34.2
eslint version
9.4.0
node version
20.22.0
The text was updated successfully, but these errors were encountered: