eslint-plugin-react-hooks-breadhead
v1.0.0
Published
## What is this
Downloads
30
Readme
eslint-plugin-react-hooks-breadhead
What is this
This is a fork of eslint-plugin-react-hooks which allows omitting dispatch
in dependencies array in hooks
Example
function Foo(props) {
const dispatch = useThunk();
useEffect(() => {
console.log(dispatch);
}, []); // <-- should not error
}
function Foo(props) {
const test = {}
useEffect(() => {
console.log(test);
}, []); // <-- should error
}
Installation
yarn add eslint-plugin-react-hooks-breadhead --dev
Usage
{
"plugins": [
"react-hooks-breadhead"
],
"rules": {
"react-hooks-breadhead/exhaustive-deps": "error"
}
}