Skip to content

Commit c1a84fa

Browse files
Removed no-use-before-define due to false positives
1 parent 1199b5d commit c1a84fa

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

lib/javascript-rules.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,16 +133,6 @@ module.exports = {
133133
},
134134
],
135135

136-
/**
137-
* Don't allow variables and classes to be used before they're defined
138-
*
139-
* @see https://eslint.org/docs/rules/no-use-before-define
140-
*/
141-
"no-use-before-define": [
142-
"error",
143-
"nofunc",
144-
],
145-
146136
/**
147137
* Don't allow constructors that are empty or only call super()
148138
*

lib/typescript-rules.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -420,16 +420,6 @@ module.exports = {
420420
}
421421
],
422422

423-
/**
424-
* Don't allow variables and classes to be used before they're defined
425-
*
426-
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-use-before-define.md
427-
*/
428-
"@typescript-eslint/no-use-before-define": [
429-
"error",
430-
"nofunc",
431-
],
432-
433423
/**
434424
* Don't allow constructors that are empty or only call super()
435425
*

0 commit comments

Comments
 (0)