forked from kaola-fed/nek-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
40 lines (40 loc) · 930 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
38
39
40
{
"extends": "airbnb-base",
"rules": {
"func-names": 0,
"radix": 0,
"max-len": 0,
"no-prototype-builtins": 0,
"global-require": 0,
"no-underscore-dangle": 0,
"no-restricted-syntax": 0,
"no-console": 0,
"no-debugger": 0,
"no-use-before-define": 0,
"consistent-return": 0,
"no-loop-func": 0,
"indent": 0,
"no-mixed-operators": 0,
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true,
"allowTernary": true
}
]
},
"globals": {
"window": true,
"document": true,
"FormData": true,
"File": true,
"XMLHttpRequest": true,
"location": true
}
}