Skip to content

Commit fb49d2e

Browse files
72636cetaoins
authored andcommitted
fix(TypeScript): Disable no-use-before-define (#41)
The rule was removed in #40, but a base config seems to enable it by default.
1 parent b7c8154 commit fb49d2e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ const baseConfig = {
131131
ERROR,
132132
{ argsIgnorePattern: '^_', ignoreRestSiblings: true },
133133
],
134+
'@typescript-eslint/no-use-before-define': OFF,
134135
'@typescript-eslint/no-non-null-assertion': OFF,
135136
'@typescript-eslint/ban-ts-ignore': OFF,
136137
'@typescript-eslint/no-explicit-any': OFF,

0 commit comments

Comments
 (0)