File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ The rules enabled in this configuration are:
167
167
* [ react/no-unknown-property] ( docs/rules/no-unknown-property.md )
168
168
* [ react/prop-types] ( docs/rules/prop-types.md )
169
169
* [ react/react-in-jsx-scope] ( docs/rules/react-in-jsx-scope.md )
170
+ * [ react/require-render-return] ( docs/rules/require-render-return.md )
170
171
171
172
** Note** : This configuration will also enable JSX in [ parser options] ( http://eslint.org/docs/user-guide/configuring#specifying-parser-options ) .
172
173
Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ module.exports = {
84
84
'react/no-unknown-property' : 2 ,
85
85
'react/no-render-return-value' : 2 ,
86
86
'react/prop-types' : 2 ,
87
- 'react/react-in-jsx-scope' : 2
87
+ 'react/react-in-jsx-scope' : 2 ,
88
+ 'react/require-render-return' : 2
88
89
}
89
90
} ,
90
91
all : {
You can’t perform that action at this time.
0 commit comments