forked from antvis/XFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
26 lines (26 loc) · 868 Bytes
/
.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
module.exports = {
extends: [require.resolve('@umijs/fabric/dist/eslint')],
rules: {
'spaced-comment': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-redeclare': 'off',
'@typescript-eslint/no-namespace': 'off',
'no-param-reassign': 'off',
'no-underscore-dangle': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/no-loop-func': 'off',
'consistent-type-definitions': 'off',
'no-useless-return': 'off',
'max-classes-per-file': 'off',
'no-return-assign': 'off',
'no-continue': 'off',
'no-bitwise': 'off',
'no-await-in-loop': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'global-require': 'off',
'no-plusplus': 'off',
'import/export': 'off',
'react-hooks/exhaustive-deps': 'off',
'import/no-extraneous-dependencies': 0,
},
}