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
Eslint v9 has breaking changes and a new config format. There's more discussion on another eslint plugin here: jsx-eslint/eslint-plugin-jsx-a11y#978
Alternatively, this workaround allowed me to use this plugin in a flat config (on eslint v8, I haven't tested v9). You could add it to the installation instructions.
// eslint.config.mjsimportpluginBetterMutationfrom"eslint-plugin-better-mutation";exportdefault[// ...{plugins: {'better-mutation': pluginBetterMutation,// ... other plugins},rules: [
...pluginBetterMuttation.configs.recommended.rules,// ... other plugins and rules]},// ...];
The text was updated successfully, but these errors were encountered:
Eslint v9 has breaking changes and a new config format. There's more discussion on another eslint plugin here: jsx-eslint/eslint-plugin-jsx-a11y#978
Alternatively, this workaround allowed me to use this plugin in a flat config (on eslint v8, I haven't tested v9). You could add it to the installation instructions.
The text was updated successfully, but these errors were encountered: