import js from '@eslint/js' import globals from 'globals' import reactHooks from 'eslint-plugin-react-hooks' import reactRefresh from 'eslint-plugin-react-refresh' import tseslint from 'typescript-eslint' import { defineConfig, globalIgnores } from 'eslint/config' // Mirror of web/eslint.config.js — same trade-offs apply. See the // dashboard's config for the rationale behind dropping stylistic // presets and downgrading no-explicit-any / unused-vars to warnings. export default defineConfig([ globalIgnores(['dist', 'node_modules', 'coverage', '**/._*']), { files: ['**/*.{ts,tsx}'], extends: [ js.configs.recommended, tseslint.configs.recommended, reactHooks.configs['recommended-latest'], reactRefresh.configs.vite, ], languageOptions: { ecmaVersion: 2020, globals: globals.browser, }, rules: { '@typescript-eslint/no-unused-vars': [ 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_', ignoreRestSiblings: true, }, ], '@typescript-eslint/consistent-type-imports': 'warn', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-empty-object-type': 'warn', '@typescript-eslint/no-unused-expressions': 'warn', 'react-hooks/rules-of-hooks': 'warn', 'react-refresh/only-export-components': [ 'warn', { allowConstantExport: true }, ], }, }, ])