We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968f745 commit 2ee095eCopy full SHA for 2ee095e
docs/rules/no-typos.md
@@ -24,6 +24,7 @@ and the following react lifecycle methods:
24
* componentWillUpdate
25
* componentDidUpdate
26
* componentWillUnmount
27
+* render
28
29
30
The following patterns are considered warnings:
lib/rules/no-typos.js
@@ -17,7 +17,8 @@ const LIFECYCLE_METHODS = [
17
'shouldComponentUpdate',
18
'componentWillUpdate',
19
'componentDidUpdate',
20
- 'componentWillUnmount'
+ 'componentWillUnmount',
21
+ 'render'
22
];
23
module.exports = {
0 commit comments