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 0d1521a commit 42efedbCopy full SHA for 42efedb
1 file changed
packages/eslint-config-react-app/index.js
@@ -195,7 +195,14 @@ module.exports = {
195
ignoreRestSiblings: true,
196
},
197
],
198
- 'no-use-before-define': ['warn', 'nofunc'],
+ 'no-use-before-define': [
199
+ 'warn',
200
+ {
201
+ functions: false,
202
+ classes: false,
203
+ variables: false,
204
+ },
205
+ ],
206
'no-useless-computed-key': 'warn',
207
'no-useless-concat': 'warn',
208
'no-useless-constructor': 'warn',
0 commit comments