diff --git a/eslint.config.mjs b/eslint.config.mjs index fed17c04..727fa720 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -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: {