-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
48 lines (48 loc) · 1.63 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
module.exports = {
extends: [require.resolve('@umijs/fabric/dist/eslint')],
rules: {
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
// 打印
'no-console': 'off',
// 必须要new
'no-new': 'off',
// 有时候需要声明局部变量
'no-underscore-dangle': 'off',
// 可以避免声明多余的变量
'no-param-reassign': 'off',
// 返回值有可能是联合类型
'consistent-return': 'off',
// 简化书写, 保证用 () 包裹即可
'no-return-assign': 'off',
// 这个要有
'no-plusplus': 'off',
// 很多时候会在文本中放emoji
'jsx-a11y/accessible-emoji': 'off',
/* react */
// 有时候需要使用dangerouslySetInnerHTML
'react/no-danger': 'off',
// 在没有id时只能使用index
'react/no-array-index-key': 'off',
// 其他
'eslint-comments/no-unlimited-disable': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/consistent-type-imports': 'off',
'no-restricted-syntax': 'off',
'guard-for-in': 'off',
'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'@typescript-eslint/no-unused-expressions': [
'error',
{ allowShortCircuit: true, allowTernary: true }
]
},
overrides: [
{
files: ['**/*.d.ts'],
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'no-redeclare': 'off'
}
}
]
}