Skip to content

breadhead/eslint-plugin-react-hooks-breadhead

Repository files navigation

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"
  }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published