-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc
45 lines (45 loc) · 1.43 KB
/
.eslintrc
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
{
"extends": [
"./.eslint-config/config.js"
],
"globals": {
"REACT_UI_PACKAGE": false
},
"rules": {
"no-prototype-builtins": "off",
"no-empty-function": "off",
"no-return-await": "off",
"no-useless-concat": "off",
"no-useless-escape": "off",
"no-warning-comments": "off",
"require-await": "off",
"no-undefined": "off",
"callback-return": "off",
"consistent-this": "off",
"func-name-matching": "off",
"func-style": "off",
"no-bitwise": "off",
"no-underscore-dangle": "off",
"one-var": "off",
"arrow-body-style": "off",
"no-useless-computed-key": "off",
"object-shorthand": "off",
"prefer-template": "off",
"require-yield": "off",
"flowtype/no-types-missing-file-annotation": "off",
"react/default-props-match-prop-types": "off",
"react/no-deprecated": "off",
"react/jsx-handler-names": "off",
"react/jsx-key": "off",
"import/unambiguous": "off",
"import/first": "off",
"import/no-duplicates": "off",
"import/no-namespace": "off",
"import/extensions": "off",
"import/order": "off",
"import/newline-after-import": "off",
"import/prefer-default-export": "off",
"import/no-unassigned-import": "off",
"import/no-anonymous-default-export": "off"
}
}