forked from apache/dolphinscheduler-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 808 Bytes
/
.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
{
"extends": "eslint-config-ali/react",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"globals": {
"AK_GLOBAL": true,
"dd": {},
"_czc": {},
"dplus": {},
"salt": {},
"_": true,
"homePageData": {},
"Lang": {}
},
"rules": {
"linebreak-style": [0, "error", "windows"],
"max-len": 0,
"new-cap": 0,
"no-param-reassign": 0,
"no-prototype-builtins": 0,
"prefer-const": 0,
"prefer-destructuring": 0,
"radix": ["error", "as-needed"],
"react/jsx-no-bind": 0,
"react/jsx-indent": 0,
"react/jsx-indent-props": 0,
"react/no-array-index-key": 0,
"react/no-danger": 0,
"react/no-did-mount-set-state": 0,
"react/no-unescaped-entities": 0,
"react/prop-types": 0
}
}