Socket
Book a DemoInstallSign in
Socket

eslint-plugin-react-helpers

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-react-helpers

A set of react eslint rules

latest
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

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.

Keywords

eslint

FAQs

Package last updated on 15 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts