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 4704382 commit bdaccf7Copy full SHA for bdaccf7
packages/eslint-config-react-app/index.js
@@ -79,6 +79,16 @@ module.exports = {
79
'no-array-constructor': 'off',
80
'@typescript-eslint/no-array-constructor': 'warn',
81
'@typescript-eslint/no-namespace': 'error',
82
+ 'no-use-before-define': 'off',
83
+ '@typescript-eslint/no-use-before-define': [
84
+ 'warn',
85
+ {
86
+ functions: false,
87
+ classes: false,
88
+ variables: false,
89
+ typedefs: false,
90
+ },
91
+ ],
92
'no-unused-vars': 'off',
93
'@typescript-eslint/no-unused-vars': [
94
'warn',
0 commit comments