File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 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:
167167* [ react/no-unknown-property] ( docs/rules/no-unknown-property.md )
168168* [ react/prop-types] ( docs/rules/prop-types.md )
169169* [ react/react-in-jsx-scope] ( docs/rules/react-in-jsx-scope.md )
170+ * [ react/require-render-return] ( docs/rules/require-render-return.md )
170171
171172** Note** : This configuration will also enable JSX in [ parser options] ( http://eslint.org/docs/user-guide/configuring#specifying-parser-options ) .
172173
Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ module.exports = {
8484 'react/no-unknown-property' : 2 ,
8585 'react/no-render-return-value' : 2 ,
8686 'react/prop-types' : 2 ,
87- 'react/react-in-jsx-scope' : 2
87+ 'react/react-in-jsx-scope' : 2 ,
88+ 'react/require-render-return' : 2
8889 }
8990 } ,
9091 all : {
You can’t perform that action at this time.
0 commit comments