-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy path.eslintrc.cjs
98 lines (98 loc) · 2.06 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
module.exports = {
env: {
browser: false,
es2021: true,
node: true
},
extends: ['plugin:react/recommended', 'plugin:react/jsx-runtime'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: [
'prettier',
'react',
'@typescript-eslint',
'unused-imports',
'import',
'react-hooks'
],
settings: {
react: {
version: 'detect'
}
},
rules: {
quotes: [
'warn',
'single',
{ avoidEscape: true, allowTemplateLiterals: true }
],
'no-unsafe-optional-chaining': [
'error',
{ disallowArithmeticOperators: true }
],
'react/jsx-filename-extension': [
'error',
{ extensions: ['.js', '.jsx', '.ts', '.tsx'] }
],
'prettier/prettier': 'warn',
'react/prop-types': 'off',
'react/display-name': 'off',
'react/no-unescaped-entities': 'off',
'react/jsx-max-props-per-line': [
1,
{
maximum: 2,
when: 'multiline'
}
],
'@typescript-eslint/no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_'
}
],
'import/order': [
'error',
{
pathGroups: [
{
pattern: '@/**',
group: 'internal',
position: 'after'
}
],
distinctGroup: false,
groups: [
'external',
'builtin',
'internal',
'index',
'sibling',
'parent',
'object',
'type'
],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true
}
}
],
'react/jsx-no-target-blank': 'off',
'react/require-render-return': 'off',
'react/no-direct-mutation-state': 'off',
'react-hooks/exhaustive-deps': 'warn'
}
};