-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.cjs
146 lines (146 loc) · 4.43 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'airbnb',
'airbnb/hooks',
'eslint-config-prettier',
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:import/recommended',
'plugin:jsx-a11y/recommended',
'plugin:@typescript-eslint/recommended',
],
globals: {
'globalThis': false,
'NodeJS': true,
'JSX': true,
},
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
parserOptions: {
'ecmaVersion': 'latest',
'sourceType': 'module',
},
plugins: ['react-refresh', '@typescript-eslint', 'import'],
settings: {
'react': {
'version': 'detect'
},
'import/core-modules': [
'@emotion/react',
'@emotion/styled',
],
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
'node': {
'paths': ['public'],
'extensions': ['.js', '.jsx', '.ts', '.tsx']
},
'typescript': {
'project': '.'
}
}
},
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'arrow-body-style': 'off',
'no-plusplus': 'off',
'react/display-name': 'off',
'react/function-component-definition': ['warn', { 'namedComponents': 'arrow-function' }],
'react/jsx-one-expression-per-line': 'off',
'react/jsx-filename-extension': ['error', { 'extensions': ['.js', '.jsx', '.ts', '.tsx'] }],
'react/jsx-props-no-spreading': 'off',
'react/require-default-props': 'off',
'react/jsx-wrap-multilines': 'off',
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
'import/prefer-default-export': 'off',
'import/no-unresolved': 'off',
'import/no-absolute-path': 'off',
"react/no-unknown-property": ["error", { "ignore": ["css"] }],
'no-restricted-exports': ['error', { 'restrictDefaultExports': { 'defaultFrom': false } }],
'import/order': [
'warn',
{
'pathGroups': [
{
'pattern': '@/lib/**',
'group': 'external'
},
{
'pattern': '{types/*,@/types*,./types}',
'group': 'type'
},
{
'pattern': '{hooks,@/hooks/**/*,./hooks/**,./use**,../use**,../../use**,../../../use**,,../../hooks/**,./_hooks/**,../../../_hooks/**}',
'group': 'internal'
},
{
'pattern': '{utils/**/*,./utils,../utils,../../utils,../../../utils}',
'group': 'type'
},
{
'pattern': '{@/constants/*,./constants}',
'group': 'type'
},
{
'pattern': '{states/**/*,./states*,./**/states*,../states*,../../states*,../../../states*,,../../../../states*,**/**/**/states*}',
'group': 'type'
},
{
'pattern': '@/services/**',
'group': 'type'
},
{
'pattern': '{./helpers,./data,./config,./defaults,../../../defaults}',
'group': 'type'
},
{
'pattern': '{components,components/_common/**,@/components,@/components/**,svgs,@/assets/**/*,@/app/**,routes/**,public/**}',
'group': 'index'
},
{
'pattern': '{styles,./*.scss,../*.scss,../*.module.scss}',
'group': 'index'
}
],
'groups': [
['external', 'builtin'],
['type', 'internal', 'object'],
['parent', 'sibling', 'index']
],
'newlines-between': 'always'
}
],
'import/no-anonymous-default-export': 'off',
'import/no-extraneous-dependencies': 0,
'import/extensions': [
'error',
'never'
],
'no-param-reassign': ['error', { 'props': false }],
'no-unused-expressions': ['warn'],
'no-unused-vars': 'off',
'no-shadow': 'off',
'no-console':'off',
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { 'argsIgnorePattern': '^_' }],
'prefer-destructuring': ['error', { 'object': true, 'array': false }],
'lines-between-class-members': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/label-has-associated-control': [
'error',
{
'labelComponents': ['label'],
'labelAttributes': ['htmlFor'],
'controlComponents': ['input']
}
]
},
}