Custom and extended rules for ESLint by @supfiger
You'll first need to install ESLint:
yarn add -D eslint
Next, install eslint-plugin-supfiger
:
yarn add -D eslint-plugin-supfiger
Add supfiger
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"supfiger"
]
}
- Disallow usage of the
any
type (extended version) - typescript-no-any-extended (see basic official version for comparing with this one)