2026-02-04 17:13:58 +01:00
|
|
|
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 eslintConfigPrettier from 'eslint-config-prettier'
|
|
|
|
|
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
|
|
|
|
|
|
|
|
export default defineConfig([
|
|
|
|
|
globalIgnores(['dist']),
|
|
|
|
|
{
|
|
|
|
|
files: ['**/*.{ts,tsx}'],
|
|
|
|
|
extends: [
|
|
|
|
|
js.configs.recommended,
|
|
|
|
|
tseslint.configs.recommended,
|
|
|
|
|
reactHooks.configs.flat.recommended,
|
|
|
|
|
reactRefresh.configs.vite,
|
|
|
|
|
eslintConfigPrettier,
|
|
|
|
|
],
|
|
|
|
|
languageOptions: {
|
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
|
globals: globals.browser,
|
|
|
|
|
},
|
2026-02-10 12:26:57 +01:00
|
|
|
rules: {
|
|
|
|
|
'react-refresh/only-export-components': [
|
|
|
|
|
'warn',
|
|
|
|
|
{ allowConstantExport: true },
|
|
|
|
|
],
|
|
|
|
|
'react-hooks/set-state-in-effect': 'off',
|
|
|
|
|
'react-hooks/preserve-manual-memoization': 'off',
|
|
|
|
|
},
|
2026-02-04 17:13:58 +01:00
|
|
|
},
|
|
|
|
|
])
|