We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8440dd1 + 8bdb6b0 commit 5590716Copy full SHA for 5590716
2 files changed
packages/eslint/core.js
@@ -100,6 +100,18 @@ module.exports = {
100
},
101
],
102
103
+ '@typescript-eslint/no-use-before-define': [
104
+ 'error',
105
+ {
106
+ functions: false,
107
+ classes: true,
108
+ variables: true,
109
+ enums: true,
110
+ typedefs: true,
111
+ ignoreTypeReferences: true,
112
+ },
113
+ ],
114
+
115
// https://stackoverflow.com/a/63833015/316108
116
'no-unused-vars': 'off',
117
'@typescript-eslint/no-unused-vars': 'error',
packages/eslint/package.json
@@ -5,7 +5,7 @@
5
"publishConfig": {
6
"access": "public"
7
8
- "version": "10.3.1",
+ "version": "10.3.2",
9
"repository": {
10
"type": "git",
11
"url": "https://github.com/GrowflowTeam/javascript.git"
0 commit comments