1.2.0 • Published 8 years ago
eslint-plugin-hijup v1.2.0
eslint-plugin-hijup
Various ESLint rules used by HIJUP
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-hijup:
$ npm install eslint-plugin-hijup --save-devNote: 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
}
}