ESLint plugin for Redux
Redux specific linting rules for ESLint.
Installation
Install ESLint either locally or globally.
$ npm install eslint
Install eslint-plugin-redux
$ npm install eslint-plugin-redux
Configuration
Add plugins
section and specify ESLint-plugin-redux as a plugin.
{
"plugins": [
"redux"
]
}
Finally, enable all of the rules that you would like to use.
{
"rules": {
}
}