-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
115 lines (115 loc) · 3.92 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
module.exports = {
extends: [
'next/core-web-vitals',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:eslint-plugin-import/recommended',
'plugin:react-hooks/recommended',
'eslint-config-prettier',
'prettier',
// 'plugin:storybook/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
env: {
browser: true,
es2020: true,
},
rules: {
'@typescript-eslint/no-var-requires': 'off',
'no-unused-labels': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'tailwindcss/no-custom-classname': 'off',
'react/react-in-jsx-scope': 'off',
'react/require-default-props': 'off',
'react/destructuring-assignment': 'warn',
'react/jsx-props-no-spreading': 'off',
'consistent-return': 'off',
'no-restricted-imports': [
'error',
{
patterns: [
{
group: [
'@/shared/**/*/*/*/*/**',
'@/entities/**/*/*/*/*/**',
'@/features/**/*/*/*/*/**',
'@/widgets/**/*/*/*/*/**',
'@/app/**/*/*/*/*/**',
],
message: 'Direct access to the internal parts of the module is prohibited',
},
{
group: [
'../shared/**',
'../entities/**',
'../features/**',
'../widgets/**',
'../app/**',
],
message: 'Prefer absolute imports instead of relatives',
},
],
},
],
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: false, optionalDependencies: false, peerDependencies: false },
],
'import/prefer-default-export': 'off',
'import/no-unresolved': 'off',
},
overrides: [
{
files: ['./src/**/*.ts', './src/**/*.tsx'],
extends: ['plugin:eslint-plugin-import/typescript'],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['tsconfig.json'],
},
plugins: ['@typescript-eslint/eslint-plugin'],
rules: {
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/no-shadow': 'off',
'object-curly-newline': 'off',
'@typescript-eslint/indent': 'off',
'import/no-extraneous-dependencies': 'error',
},
},
// {
// files: ['**/__tests__/**/*.{test,spec}.?(c|m)[jt]s?(x)'],
// extends: ['plugin:testing-library/react'],
// rules: {
// 'testing-library/no-debugging-utils': 'warn',
// 'import/no-extraneous-dependencies': [
// 'error',
// { devDependencies: true },
// ],
// },
// },
],
settings: {
'import/resolver': {
node: {
moduleDirectory: [
'node_modules',
'src/',
'src/features',
'src/widgets',
'src/entities',
'src/shared',
],
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
},
typescript: {
alwaysTryTypes: true,
},
},
},
}