COMPFEST es-lint rules
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.
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
}
}- compfest/compfest-uppercase: COMPFEST. Not CompFest, not Compfest and definitely not comfest.