forked from oceanbase/odc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
22 lines (22 loc) · 813 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
module.exports = {
"extends": "@umijs/fabric/dist/eslint",
"rules": {
"import/no-extraneous-dependencies": 0,
"no-underscore-dangle": 0,
"no-param-reassign": 0,
"@typescript-eslint/no-parameter-properties": 0,
"@typescript-eslint/method-signature-style": 0,
"prefer-const": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/array-type": 0,
"@typescript-eslint/no-unused-expressions": 0,
"@typescript-eslint/no-shadow": 0,
"@typescript-eslint/consistent-type-imports": 0,
"@typescript-eslint/no-this-alias": 0,
"@typescript-eslint/dot-notation": 0,
"react/no-array-index-key": 0,
"@typescript-eslint/switch-exhaustiveness-check": 0,
"@typescript-eslint/consistent-indexed-object-style": 0,
"react/no-unescaped-entities": 0
}
}