crypto misuse
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-misuse
:
npm install eslint-plugin-misuse --save-dev
Add misuse
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"misuse"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"misuse/rule-name": 2
}
}
- Fill in provided rules here