a loadsh eslint
npm install eslint-plugin-loadshesa loadsh eslint
You'll first need to install ESLint:
``sh`
npm i eslint --save-dev
Next, install eslint-plugin-loadshes:
`sh`
npm install eslint-plugin-loadshes --save-dev
Add loadshes to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
`json`
{
"plugins": [
"loadshes"
]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"loadshes/rule-name": 2
}
}
TODO: Run eslint-doc-generator to generate the rules list.