import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; import globals from 'globals'; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommended, { ignores: ['dist/**', 'node_modules/**', 'coverage/**'], }, { files: ['**/*.ts'], languageOptions: { ecmaVersion: 2022, sourceType: 'module', globals: { ...globals.node, ...globals.jest, }, }, rules: { '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }], '@typescript-eslint/no-use-before-define': 'off', '@typescript-eslint/ban-ts-comment': 'warn', '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-namespace': 'off', 'class-methods-use-this': 'off', 'no-useless-constructor': 'off', 'no-var': 'warn', }, } );