-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
34 lines (33 loc) · 1.13 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
// const base = require('@umijs/fabric/dist/eslint');
// module.exports = {
// ...base,
// rules: {
// ...base.rules,
// // 'arrow-parens': 0,
// 'react/no-array-index-key': 'off',
// 'no-param-reassign': 'off',
// '@typescript-eslint/no-loop-func': 'off',
// // 'react/sort-comp': 0,
// // '@typescript-eslint/no-explicit-any': 1,
// // '@typescript-eslint/no-empty-interface': 1,
// // '@typescript-eslint/no-inferrable-types': 0,
// // 'react/no-find-dom-node': 1,
// // 'react/require-default-props': 0,
// // 'no-confusing-arrow': 0,
// // 'import/no-extraneous-dependencies': 0,
// // 'import/no-named-as-default-member': 0,
// // 'import/no-unresolved': 0,
// // 'jsx-a11y/label-has-for': 0,
// // 'jsx-a11y/label-has-associated-control': 0,
// // 'jsx-a11y/control-has-associated-label': 0,
// },
// };
module.exports = {
extends: [require.resolve('@umijs/fabric/dist/eslint')],
rules: {
'react/no-array-index-key': 'off',
'no-param-reassign': 'off',
'@typescript-eslint/no-loop-func': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
},
};