sleede / fabmanager-rules

Eslint coding rules for fab-manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eslint-plugin-fabmanager

ESLint rules for Fab-manager

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-fabmanager:

npm install eslint-plugin-fabmanager --save-dev

Usage

Add fabmanager to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "fabmanager"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "fabmanager/no-bootstrap": "error"
    }
}

Development

Use Yeoman to generate a new rule.

Code with test-driven development.

About

Eslint coding rules for fab-manager

License:MIT License


Languages

Language:JavaScript 100.0%