1.1.1 • Published 8 years ago

eslint-plugin-kiddomstyle v1.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

Build Status

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-dev

Next, install eslint-plugin-kiddomstyle:

$ npm install eslint-plugin-kiddomstyle --save-dev

Note: 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