npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-react-hooks2

v4.6.3

Published

ESLint rules for React Hooks

Downloads

68

Readme

eslint-plugin-react-hooks2

Fork of eslint-plugin-react-hooks with the following enhanced and additional options:

  • additionalHooks : A regex to match the names of custom Hooks that have dependencies, or an array of hook names and arguments array indicies to indicate which argument(s) are functions, and which is the dependencies array. A configuration like ["useCustomMemo", ["useCallbacks", [0, 1]], ["useDelay", 0, 2]] is equal to [["useCustomMemo", 0, 1], ["useCallbacks", [0, 1], 2], ["useDelay", 0, 2]], which is equal to [["useCustomMemo", [0], 1], ["useCallbacks", [0, 1], 2], ["useDelay", [0], 2]], meaning the useCustomMemo(fn, deps) takes a function as the first argument and dependencies as the second, useCallbacks(fn1, fn2, deps) takes a function as the first and second argument and dependencies as the third argument, and useDelay(fn, delay, deps) takes a function as the first, and dependencies as the third argument.
  • immediateRefHooks : A regex to match the name of hooks that return a Ref that can immediately be used in a useEffect() callback.
  • stableRefHooks : A regex to match the name of hooks returning a value that will maintain its object reference during the lifecycle of the component, similar to useRef().
  • stableStateHooks : An array of hook names and return array indicies to indicate return values similar to useState(). A configuration like ["useModel", ["useToggle", [1, 2]]] is equal to [["useModel", 1], ["useToggle", [1, 2]]], which is equal to [["useModel", [1]], ["useToggle", [1, 2]]], meaning the second item in the return value of useModel() and the second and third items in the return value of useToggle() will maintain their object references throughout the lifecycle of the component.

Example:

{
  "rules": {
    // ...
    "react-hooks/exhaustive-deps": [
      "warn",
      {
        "additionalHooks": ["useCustomMemo", ["useCallbacks", [0, 1]], ["useDelay", 0, 2]],
        "immediateRefHooks": "^use(ImmedValueRef)$",
        "stableRefHooks": "^use(CombinedRef|Constant|ImmedValueRef|RefCallback|RefGetter)$",
        "stableStateHooks": ["useModel", ["useToggle", [1, 2]]]
      }
    ]
  }
}

The following is the original text of the eslint-plugin-react-hooks README.

This ESLint plugin enforces the Rules of Hooks.

It is a part of the Hooks API for React.

Installation

Note: If you're using Create React App, please use react-scripts >= 3 instead of adding it directly.

Assuming you already have ESLint installed, run:

# npm
npm install eslint-plugin-react-hooks --save-dev

# yarn
yarn add eslint-plugin-react-hooks --dev

Then extend the recommended eslint config:

{
  "extends": [
    // ...
    "plugin:react-hooks/recommended"
  ]
}

Custom Configuration

If you want more fine-grained configuration, you can instead add a snippet like this to your ESLint configuration file:

{
  "plugins": [
    // ...
    "react-hooks"
  ],
  "rules": {
    // ...
    "react-hooks/rules-of-hooks": "error",
    "react-hooks/exhaustive-deps": "warn"
  }
}

Advanced Configuration

exhaustive-deps can be configured to validate dependencies of custom Hooks with the additionalHooks option. This option accepts a regex to match the names of custom Hooks that have dependencies.

{
  "rules": {
    // ...
    "react-hooks/exhaustive-deps": ["warn", {
      "additionalHooks": "(useMyCustomHook|useMyOtherCustomHook)"
    }]
  }
}

We suggest to use this option very sparingly, if at all. Generally saying, we recommend most custom Hooks to not use the dependencies argument, and instead provide a higher-level API that is more focused around a specific use case.

Valid and Invalid Examples

Please refer to the Rules of Hooks documentation and the Hooks FAQ to learn more about this rule.

License

MIT