forked from yurisldk/realworld-react-fsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
129 lines (129 loc) · 3.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
module.exports = {
env: { browser: true, es2020: true },
extends: [
'plugin:eslint-plugin-import/recommended',
'plugin:react-hooks/recommended',
'eslint-config-airbnb',
'eslint-config-prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': 'warn',
'react/react-in-jsx-scope': 'off',
'react/require-default-props': 'off',
'import/prefer-default-export': 'off',
'react/jsx-props-no-spreading': 'off',
'import/order': [
'error',
{
pathGroups: [
{ pattern: 'react', group: 'builtin' },
{ pattern: 'vite', group: 'builtin' },
{ pattern: '~shared/**', group: 'internal' },
{ pattern: '~entities/**', group: 'internal' },
{ pattern: '~features/**', group: 'internal' },
{ pattern: '~widgets/**', group: 'internal' },
{ pattern: '~pages/**', group: 'internal' },
],
pathGroupsExcludedImportTypes: ['builtin'],
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index',
],
'newlines-between': 'never',
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
'no-restricted-imports': [
'error',
{
patterns: [
{
group: [
'~shared/*/*/**',
'~entities/*/**',
'~features/*/**',
'~widgets/*/**',
'~pages/*/**',
'~app/**',
],
message:
'Direct access to the internal parts of the module is prohibited',
},
{
group: [
'../**/shared',
'../**/entities',
'../**/features',
'../**/widgets',
'../**/pages',
'../**/app',
],
message: 'Prefer absolute imports instead of relatives',
},
],
},
],
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['./vite.config.ts'] },
],
},
overrides: [
// typescript
{
files: ['./src/**/*.ts', './src/**/*.tsx'],
extends: [
'plugin:eslint-plugin-import/typescript',
'eslint-config-airbnb-typescript',
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['tsconfig.json'],
},
plugins: ['@typescript-eslint/eslint-plugin'],
rules: {
'@typescript-eslint/indent': 'off',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'**/msw/**',
'**/react-query/utils.tsx',
'**/react-router/utils.ts',
],
},
],
},
},
// tests
{
files: ['./src/**/*.test.ts', './src/**/*.test.tsx'],
extends: ['plugin:testing-library/react', 'plugin:jest-dom/recommended'],
rules: {
'testing-library/no-debugging-utils': 'warn',
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: true },
],
},
},
],
settings: {
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
};