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'; export default tseslint.config( { ignores: [ 'dist/**', 'node_modules/**', 'RadioWebApp/**', 'coverage/**', ], }, js.configs.recommended, ...tseslint.configs.recommended, { files: ['**/*.{js,mjs,cjs,jsx,ts,tsx}'], languageOptions: { ecmaVersion: 'latest', sourceType: 'module', parserOptions: { ecmaFeatures: { jsx: true, }, }, globals: { ...globals.browser, ...globals.node, ...globals.serviceworker, __APP_BUILD_ID__: 'readonly', __RADIO_COUNTRIES_JSON__: 'readonly', __MANAGED_COUNTRY_CODE__: 'readonly', cast: 'readonly', chrome: 'readonly', }, }, plugins: { 'react-hooks': reactHooks, 'react-refresh': reactRefresh, }, rules: { ...reactHooks.configs.recommended.rules, 'no-empty': ['error', { allowEmptyCatch: true }], 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrors: 'none', }], 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }], }, }, { files: ['src/player.js'], rules: { '@typescript-eslint/no-unused-vars': 'off', }, }, );