-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
195 lines (194 loc) · 4.81 KB
/
.eslintrc.js
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
modules: true,
},
},
globals: {
document: true,
localStorage: true,
window: true,
},
env: {
browser: true,
node: true,
es6: true,
},
settings: {
react: {
version: 'detect',
},
},
parser: '@typescript-eslint/parser',
plugins: ['babel', '@typescript-eslint'],
rules: {
'prettier/prettier': 0,
'default-case': 2,
'linebreak-style': [2, 'unix'],
'no-useless-escape': 2,
'key-spacing': [
2,
{
beforeColon: false,
afterColon: true,
},
],
'semi-spacing': [
2,
{
before: false,
after: true,
},
],
'comma-spacing': [
2,
{
before: false,
after: true,
},
],
'space-unary-ops': [
2,
{
words: true,
nonwords: false,
},
],
'space-infix-ops': [
2,
{
int32Hint: false,
},
],
'no-mixed-spaces-and-tabs': 0,
'object-curly-spacing': [2, 'always'],
'no-duplicate-imports': 2,
'standard/no-callback-literal': 0,
// 'no-cond-assign': [2, 'always'],
'no-console': isProduction ? 2 : 0,
'no-debugger': isProduction ? 2 : 0,
// 'spaced-comment': [2, 'always'],
// 'no-constant-condition': 2,
// 'no-dupe-args': 2,
// 'no-dupe-keys': 2,
// 'no-duplicate-case': 2,
'no-empty': 0,
// 'no-empty-character-class': 2,
// 'no-control-regex': 2,
// 'no-regex-spaces': 2,
// 'no-ex-assign': 2,
// 'no-extra-boolean-cast': 2,
// 'no-func-assign': 2,
// 'no-invalid-regexp': 2,
// 'no-irregular-whitespace': 2,
// 'no-negated-in-lhs': 2,
// 'no-obj-calls': 2,
// 'no-sparse-arrays': 2,
// 'no-unexpected-multiline': 2,
// 'no-unreachable': 2,
// 'use-isnan': 2,
'valid-jsdoc': 0,
// 'valid-typeof': 2,
// 'accessor-pairs': 2,
// eqeqeq: 2,
'no-case-declarations': 0,
'no-div-regex': 0,
// 'no-empty-pattern': 2,
// 'no-eq-null': 1,
'no-eval': 0,
// 'no-extra-bind': 2,
// 'no-fallthrough': 2,
// 'no-floating-decimal': 2,
'no-implied-eval': 0,
// 'no-invalid-this': 2,
// 'no-iterator': 2,
// 'no-labels': 2,
// 'no-lone-blocks': 2,
'no-loop-func': 0,
// 'no-multi-str': 2,
// 'no-native-reassign': 2,
// 'no-redeclare': 2,
// 'no-self-assign': 2,
// 'no-self-compare': 2,
// 'no-sequences': 2,
// 'no-throw-literal': 2,
// 'no-unmodified-loop-condition': 2,
// 'no-unused-labels': 2,
// 'no-useless-call': 2,
// 'no-useless-concat': 2,
// 'no-with': 2,
radix: 0,
// 'wrap-iife': [2, 'any'],
// yoda: [2, 'never'],
// 'no-delete-var': 2,
// 'no-label-var': 2,
// 'no-shadow-restricted-names': 2,
'no-undef': 0,
// 'no-undef-init': 2,
// 'no-unneeded-ternary': 2,
// // 为了避免和 @typescript-eslint/no-unused-vars 冲突
'no-unused-vars': 0,
'react/no-multi-comp': 0,
// 'react/no-direct-mutation-state': 2,
// 'react/react-in-jsx-scope': 2,
// 'react/sort-comp': 2,
// 'react/no-deprecated': 1,
'react/display-name': 0,
// 'react/no-find-dom-node': 2,
// 'react/no-unescaped-entities': 2,
// 'react/no-string-refs': 2,
// 'react/no-is-mounted': 2,
// 'react/no-children-prop': 2,
'react/prop-types': 0,
// 'react/boolean-prop-naming': 2,
'react/button-has-type': 0,
// 'react/default-props-match-prop-types': 2,
// 'react/no-access-state-in-setstate': 2,
// 'react/no-danger-with-children': 2,
// 'react/no-render-return-value': 2,
'react/no-set-state': 0,
'react/no-this-in-sfc': 0,
// 'react/no-unknown-property': 2,
// 'react/no-unsafe': 2,
'react/no-unused-state': 0,
'react/prefer-es6-class': 0,
'react/require-default-props': 0,
// 'react/require-render-return': 2,
// 'react/self-closing-comp': 2,
// 'react/style-prop-object': 2,
// 'react/void-dom-elements-no-children': 2,
// 'react/jsx-curly-spacing': 2,
// 'react/jsx-equals-spacing': 2,
// 'react/jsx-key': 2,
// 'react/jsx-no-target-blank': 2,
// 'react/jsx-no-duplicate-props': 2,
// 'react/jsx-props-no-multi-spaces': 2,
// 'react/jsx-uses-react': 2,
// 'react/jsx-tag-spacing': 2,
// 'react/jsx-uses-vars': 2,
// 'react/jsx-wrap-multilines': 2,
// 'react/no-did-update-set-state': 2,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/interface-name-prefix': 0,
'@typescript-eslint/no-use-before-define': 0,
'react-hooks/exhaustive-deps': 0,
'space-infix-ops': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/ban-ts-ignore': 0,
'@typescript-eslint/no-inferrable-types': 0,
'react/jsx-no-target-blank': 0,
'@typescript-eslint/no-empty-function': 0
},
};