0.1.1 • Published 1 year ago

eslint-plugin-react-helpers v0.1.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

eslint-plugin-react-helpers

A set of react eslint rules

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-react-helpers:

npm install eslint-plugin-react-helpers --save-dev

Usage

Add react-helpers to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "react-helpers"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "react-helpers/prefer-use-state-lazy-initialization": 2
    }
}

Rules

Name                                Description
no-named-useeffect-functionsDisallows named function in useEffect hooks
prefer-use-state-lazy-initializationDetects function calls in useState and suggests using lazy initialization instead.