-
Notifications
You must be signed in to change notification settings - Fork 130
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
Support "Flat Config" (ESLint 9) #333
Comments
39 tasks
If anyone is trying to use this with eslint's flat config. You can use the import { fixupPluginRules } from '@eslint/compat'
import reactNative from 'eslint-plugin-react-native'
export default [
// ...
{
plugins: {
'react-native': fixupPluginRules(reactNative)
}
}
] |
@Miguel-A-Jara I got the following:
|
How to fix ?? |
Any updates as to when |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👋 Coming over from eslint/eslint#18093: ESLint is migrating to a new "flat config" format that will be the default in ESLint v9.
It doesn't look like
eslint-plugin-react-native
has support yet. I'm posting this issue here as a reference & cross-linking it to the table in eslint/eslint#18093. If there's anything technical blocking the extension from supporting flat configs, please let us know - we'd be happy to try to help! 💜Additional resources:
The text was updated successfully, but these errors were encountered: