0.2.0 • Published 5 years ago

eslint-plugin-compfest v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

eslint-plugin-compfest

COMPFEST es-lint rules

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-compfest:

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

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-compfest globally.

Usage

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

{
    "plugins": [
        "compfest"
    ]
}

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

{
    "rules": {
        "compfest/compfest-uppercase": 2
    }
}

Supported Rules