Skip to content

Commit 0f4c40d

Browse files
committed
Update answers of hook rules and linting
1 parent 24b758a commit 0f4c40d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5125,7 +5125,7 @@
51255125
You need to follow two rules in order to use hooks,
51265126
51275127
1. **Call Hooks only at the top level of your react functions:** You shouldn’t call Hooks inside loops, conditions, or nested functions. This will ensure that Hooks are called in the same order each time a component renders and it preserves the state of Hooks between multiple useState and useEffect calls.
5128-
2. **Call Hooks from React Functions only:**You shouldn’t call Hooks from regular JavaScript functions. Instead, you should call them from either function components or custom hooks.
5128+
2. **Call Hooks from React Functions only:** You shouldn’t call Hooks from regular JavaScript functions. Instead, you should call them from either function components or custom hooks.
51295129
51305130
The eslint plugin named **eslint-plugin-react-hooks** can be used to enforce these two rules.
51315131
@@ -5150,6 +5150,9 @@
51505150
}
51515151
}
51525152
```
5153+
5154+
For example, the linter enforce proper naming convention for hooks. If you rename your custom hooks which as prefix "use" to something else then linter won't allow you to call built-in hooks such as useState, useEffect etc inside of your custom hook anymore.
5155+
51535156
**Note:** This plugin is intended to use in Create React App by default.
51545157
51555158
**[⬆ Back to Top](#table-of-contents)**

0 commit comments

Comments
 (0)