plugin for typechecking path
npm install eslint-plugin-study-type-checkerplugin for production project
You'll first need to install ESLint:
``sh`
npm i eslint --save-dev
Next, install eslint-plugin-eslint-type-checker:
`sh`
npm install eslint-plugin-study-type-checker --save-dev
Add eslint-type-checker to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
`json`
{
"plugins": [
"study-type-checker"
]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"study-type-checker/rule-name": "error"
}
}
TODO: Run eslint-doc-generator to generate the rules list.