Find issues with react-redux code usages
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-react-redux
:
$ npm install @pgilad/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.
Add react-redux
to the plugins section of your .eslintrc
configuration file.
{
"plugins": [
"@pgilad/eslint-plugin-react-redux"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"@pgilad/react-redux/use-selectors-on-state": 1
}
}
MIT