Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/realmteam/eslint-plugin-redux-reliever
eslint plugin for react-redux-reliever
https://github.com/realmteam/eslint-plugin-redux-reliever
Last synced: 17 days ago
JSON representation
eslint plugin for react-redux-reliever
- Host: GitHub
- URL: https://github.com/realmteam/eslint-plugin-redux-reliever
- Owner: RealmTeam
- Created: 2018-03-21T10:30:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T11:41:01.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T21:26:59.950Z (2 months ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-plugin-redux-reliever
enforce usage of action$.ofType inside [react-redux-reliever](https://github.com/RealmTeam/react-redux-reliever) epics
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```Next, install `eslint-plugin-redux-reliever`:
```
$ npm install eslint-plugin-redux-reliever --save-dev
```**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-redux-reliever` globally.
## Usage
Add `react-redux-reliever-of-type` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"redux-reliever"
]
}
```Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"redux-reliever/enforce-oftype-usage": 2
}
}
```## Supported Rules
* enforce-oftype-usage