-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
93 lines (91 loc) · 2.65 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
module.exports = {
extends: ['alloy', 'alloy/react', 'alloy/typescript'],
env: {
// 你的环境变量(包含多个预定义的全局变量)
//
browser: true,
// node: true,
// mocha: true,
// jest: true,
// jquery: true
},
globals: {
// 你的全局变量(设置为 false 表示它不允许被重新赋值)
//
// myGlobal: false
},
// parser: '@typescript-eslint/parser',
// plugins: ['@typescript-eslint', 'react'],
// settings: {
// react: {
// version: 'detect',
// },
// },
rules: {
// 'indent': [
// 'error',
// 2,
// {
// SwitchCase: 1,
// flatTernaryExpressions: true
// }
// ],
'no-case-declarations': 'off',
// 'object-curly-spacing': [
// 'error',
// 'always',
// {
// arraysInObjects: true,
// objectsInObjects: true,
// }
// ],
// 'no-return-await': 'off',
// 'no-unused-vars': 'warn',
// 'comma-dangle': ['error', 'always-multiline'],
// 'function-paren-newline': 'off',
// 'no-useless-constructor': 'off',
// 'no-undefined': 'off',
// 'implicit-arrow-linebreak': 'off',
// 'no-confusing-arrow': 'off',
'no-param-reassign': 'off',
'no-implicit-coercion': 'off',
// 'guard-for-in': 'off',
// 'spaced-comment': 'off',
complexity: 'off',
'no-unused-expressions': 'off',
'max-depth': 'off',
'max-params': 'off',
'no-return-assign': 'off',
'no-empty': 'off',
// TypeScript
// '@typescript-eslint/indent': [
// 'error',
// 2,
// {
// SwitchCase: 1,
// flatTernaryExpressions: true
// }
// ],
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/explicit-member-accessibility': 'off',
// '@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-empty-interface': 'off',
// '@typescript-eslint/prefer-function-type': 'off',
// '@typescript-eslint/no-useless-constructor': 'off',
// '@typescript-eslint/spaced-comment': 'off',
// '@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'@typescript-eslint/member-ordering': 'off',
'@typescript-eslint/no-invalid-void-type': 'off',
'@typescript-eslint/no-invalid-this': 'off',
// React
// 'react/jsx-indent': 'off',
// 'react/jsx-indent-props': 'off',
// 'react/jsx-closing-bracket-location': 'off',
// 'react/sort-comp': 'off',
// 'react/jsx-curly-newline': 'off',
'react/no-unsafe': 'off',
'react/no-deprecated': 'off',
'react/no-unescaped-entities': 'off',
},
};