if you like haiku
and want your comments to be
install this plugin
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-haiku
:
$ npm install eslint-plugin-haiku --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-haiku
globally.
Add haiku
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["haiku"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"haiku/haiku-comments": 2
}
}