-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
72 lines (71 loc) · 1.97 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'airbnb',
'airbnb-typescript',
'prettier',
'plugin:storybook/recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
],
parserOptions: {
project: ['./tsconfig.json', './tsconfig.node.json', './tsconfig.app.json'],
},
ignorePatterns: ['dist', '.eslintrc.cjs', 'vite.config.ts'],
parser: '@typescript-eslint/parser',
plugins: ['react', 'react-hooks', 'react-refresh', '@typescript-eslint', '@tanstack/query'],
rules: {
'no-alert': 'off',
'react/jsx-props-no-spreading': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'react/require-default-props': 'off',
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
'react/jsx-filename-extension': ['warn', { extensions: ['.tsx'] }],
'react/react-in-jsx-scope': 'off',
'import/no-extraneous-dependencies': 0,
'no-use-before-define': ['error', { functions: true, classes: true, variables: false }],
'import/extensions': 'off',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': [
'error',
{
ignoreTypeValueShadow: true,
ignoreFunctionTypeParameterNameValueShadow: true,
allow: ['theme', 'size', 'color', 'mode'],
},
],
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
},
overrides: [
{
files: '**/*.+(ts|tsx)',
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['plugin:@typescript-eslint/recommended'],
},
],
settings: {
'import/resolver': {
node: {
paths: ['src'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
};