You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-react-redux

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-react-redux

Enforcing best practices for react-redux

4.2.2
latest
Source
npmnpm
Version published
Weekly downloads
38K
3.75%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-react-redux

Enforcing best practices for react-redux

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-react-redux:

$ npm install eslint-plugin-react-redux --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-react-redux globally.

Usage

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

{
    "plugins": [
        "react-redux"
    ],
    "extends": [
        "plugin:react-redux/recommended"
    ]
}

To configure individual rules:

{
    "rules": {
        "react-redux/connect-prefer-named-arguments": 2
    }
}

Supported Rules

Keywords

eslint

FAQs

Package last updated on 17 Mar 2025

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