Skip to content

pgilad/eslint-plugin-react-redux

Repository files navigation

eslint-plugin-react-redux

Find issues with react-redux code usages

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

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

{
    "rules": {
        "react-redux/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here

License

MIT

About

Enforce best practices when using Redux with React

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published