We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d06331 + a85a94a commit 8440dd1Copy full SHA for 8440dd1
2 files changed
packages/eslint/core.js
@@ -90,6 +90,16 @@ module.exports = {
90
// it's probably fine
91
'no-await-in-loop': 'warn',
92
93
+ // functions are hoisted. why is this not the default?
94
+ 'no-use-before-define': [
95
+ 'error',
96
+ {
97
+ functions: false,
98
+ classes: true,
99
+ variables: true,
100
+ },
101
+ ],
102
+
103
// https://stackoverflow.com/a/63833015/316108
104
'no-unused-vars': 'off',
105
'@typescript-eslint/no-unused-vars': 'error',
packages/eslint/package.json
@@ -5,7 +5,7 @@
5
"publishConfig": {
6
"access": "public"
7
},
8
- "version": "10.3.0",
+ "version": "10.3.1",
9
"repository": {
10
"type": "git",
11
"url": "https://github.com/GrowflowTeam/javascript.git"
0 commit comments