eslint-plugin-resub
v0.7.0
Published
ESlint rules for ReSub
Downloads
30
Maintainers
Readme
eslint-plugin-resub
ReSub specific linting rules for ESLint
Installation
$ npm i eslint-plugin-resub @typescript-eslint/parser --save-devUsage
Add resub to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"parser": "@typescript-eslint/parser",
"plugins": ["resub"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"resub/override-calls-super": "error",
"resub/no-state-access": "error"
}
}Or extend recommended config
{
"extends": "plugin:resub/recommended"
}Rules
| Name | Description |
| -------------------------------------------------------------- | ---------------------------------------------------- |
| no-state-access | Disallow state accsess in ReSub componentWillMount |
| override-calls-super | Require super calls in overridden methods argument |
License and Copyright
This software is released under the terms of the MIT license.
