-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslint.config.js
69 lines (68 loc) · 1.72 KB
/
eslint.config.js
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
import js from '@eslint/js'
import react from 'eslint-plugin-react'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import globals from 'globals'
import tseslint from 'typescript-eslint'
export default tseslint.config(
{
ignores: [
'dist',
'node_modules',
'vercel',
'.vercel',
'dev-server.js',
'.react-router',
'build',
],
},
{
settings: {
react: {
version: '19.0', // Updated for React 19
},
},
extends: [
js.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
project: './tsconfig.json', // Single tsconfig
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
react,
},
rules: {
...reactHooks.configs.recommended.rules,
'no-await-in-loop': 'error',
'@typescript-eslint/array-type': ['error', { default: 'generic' }],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'variable',
types: ['boolean'],
format: ['PascalCase'],
prefix: ['is', 'should', 'has', 'are', 'can', 'was', 'show'],
},
],
// prevents throw data() when working with rr7
'@typescript-eslint/only-throw-error': 'off',
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
'react-hooks/exhaustive-deps': [
'error',
{
additionalHooks: 'useMutation',
},
],
},
}
)