33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
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 { globalIgnores } from 'eslint/config'
|
|
|
|
export default tseslint.config([
|
|
globalIgnores(['dist', 'coverage', 'backend/node_modules', 'node_modules']),
|
|
{
|
|
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-explicit-any': 'off',
|
|
// Autoriser variables prefixées par _ pour marquer l'inutilisation intentionnelle
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrors: 'all', caughtErrorsIgnorePattern: '^_' }],
|
|
// Éviter les blocs vides involontaires mais tolérer try/catch vides si commentés
|
|
'no-empty': ['warn', { allowEmptyCatch: true }],
|
|
// Tolérer les échappements superflus dans certains regex hérités
|
|
'no-useless-escape': 'off',
|
|
},
|
|
},
|
|
])
|