Skip to content

Commit

Permalink
fix: turn typescript-eslint no-redeclare off
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Jan 12, 2024
1 parent 338eeb0 commit 0269a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configs/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export async function typescript(
'@typescript-eslint/no-invalid-void-type': 'off',
'@typescript-eslint/no-loss-of-precision': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-redeclare': 'error',
'@typescript-eslint/no-redeclare': 'off',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': ['error', { classes: false, functions: false, variables: true }],
Expand Down

0 comments on commit 0269a98

Please sign in to comment.