Better react exhaustive-deps eslint plugin
``bash`
npm i eslint-plugin-ignore-use-effect
To use this plugin, you must disable original react-hooks/exhaustive-deps rule
`javascript``
module.exports = {
// ...
plugins: ["react-hooks"],
rules: {
"react-hooks/exhaustive-deps": "off",
'ignore-use-effect/exhaustive-deps': 'warn',
}
// ...
}