-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheslint.config.mjs
93 lines (88 loc) · 2.25 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import js from '@eslint/js';
import globals from 'globals';
import typescript from '@typescript-eslint/eslint-plugin';
import typescriptParser from '@typescript-eslint/parser';
import react from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import jsxA11y from 'eslint-plugin-jsx-a11y';
import importPlugin from 'eslint-plugin-import';
export default [
// Ignore patterns
{
ignores: [
'**/node_modules/**',
'build/**',
'dist/**',
'.cache/**',
'public/build/**',
'**/.*',
'server/dist/**',
'server/src/functions/ssr.ts',
'tailwind.config.ts',
'vite.config.ts',
],
},
// Base configuration with plugins
{
plugins: {
'@typescript-eslint': typescript,
react: react,
'react-hooks': reactHooks,
'jsx-a11y': jsxA11y,
import: importPlugin,
},
},
js.configs.recommended,
// Strict rules for app files
{
files: ['**/*.{ts,tsx}'],
languageOptions: {
parser: typescriptParser,
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: './tsconfig.json',
tsconfigRootDir: '.',
},
globals: {
...globals.browser,
...globals.es2022,
...globals.node,
React: 'readonly',
},
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
typescript: true,
node: true,
},
},
rules: {
...typescript.configs.recommended.rules,
...react.configs.recommended.rules,
...reactHooks.configs.recommended.rules,
...jsxA11y.configs.recommended.rules,
...importPlugin.configs.recommended.rules,
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-unused-expressions': 'error',
'no-empty': 'error',
'no-undef': 'error',
'@typescript-eslint/no-unused-vars': 'error',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
},
},
// Relaxed rules for other files
{
files: ['**/*.{js,jsx,ts,tsx}'],
rules: {
'@typescript-eslint/no-unused-expressions': 'off',
'no-empty': 'warn',
'no-undef': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
},
},
];