Skip to content

Commit

Permalink
chore: switch off no-redeclare
Browse files Browse the repository at this point in the history
  • Loading branch information
otabek-magic committed Nov 25, 2024
1 parent 60f0520 commit 70dd6f5
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@ export default [
files: ['**/*.ts', '**/*.tsx'],

rules: {
'no-alert': 0,
'no-dupe-class-members': 0,
'no-underscore-dangle': 0,
'no-useless-constructor': 0,
'no-unused-vars': 0,
'no-redeclare': 1,
'class-methods-use-this': 0,
'importPlugin/extensions': 0,
'importPlugin/no-extraneous-dependencies': 0,
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/await-thenable': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/no-floating-promises': 0,
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/no-useless-constructor': 0,
'@typescript-eslint/no-unsafe-member-access': 0,
'@typescript-eslint/restrict-template-expressions': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'no-alert': 'off',
'no-dupe-class-members': 'off',
'no-underscore-dangle': 'off',
'no-useless-constructor': 'off',
'no-unused-vars': 'off',
'no-redeclare': 'off',
'class-methods-use-this': 'off',
'importPlugin/extensions': 'off',
'importPlugin/no-extraneous-dependencies': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/await-thenable': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-useless-constructor': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
},

settings: {
Expand Down

0 comments on commit 70dd6f5

Please sign in to comment.