1.1.1 • Published 9 years ago
eslint-plugin-kiddomstyle v1.1.1
eslint-plugin-kiddomstyle
This plugin enforces architectural choices within Kiddom's React-Redux code.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-kiddomstyle:
$ npm install eslint-plugin-kiddomstyle --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-kiddomstyle globally.
Usage
Add kiddomstyle to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"kiddomstyle"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"kiddomstyle/rule-name": 2
}
}Supported Rules
- Fill in provided rules here