1.2.0 • Published 7 years ago

eslint-plugin-hijup v1.2.0

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

eslint-plugin-hijup

Various ESLint rules used by HIJUP

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-hijup:

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

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

Usage

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

{
    "plugins": [
        "hijup"
    ]
}

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

{
    "rules": {
        "hijup/rule-name": 2
    }
}