0.1.1 • Published 3 years ago
eslint-plugin-react-helpers v0.1.1
eslint-plugin-react-helpers
A set of react eslint rules
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-react-helpers:
npm install eslint-plugin-react-helpers --save-devUsage
Add react-helpers to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"react-helpers"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"react-helpers/prefer-use-state-lazy-initialization": 2
}
}Rules
| Name | Description |
|---|---|
| no-named-useeffect-functions | Disallows named function in useEffect hooks |
| prefer-use-state-lazy-initialization | Detects function calls in useState and suggests using lazy initialization instead. |