-
Notifications
You must be signed in to change notification settings - Fork 26
/
.eslintrc
47 lines (47 loc) · 807 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
41
42
43
44
45
46
47
{
"env": {
"browser": true,
"node": true,
"mocha": true
},
"extends": [
"eslint-config-airbnb"
],
"globals": {
"chai": true,
"xmind": true
},
"rules": {
"comma-dangle": 0,
"func-names": 0,
"global-require": 1,
"import/no-extraneous-dependencies": 1,
"import/no-unresolved": 1,
"key-spacing": 0,
"new-cap": 1,
"no-cond-assign": 1,
"no-fallthrough": 1,
"no-mixed-operators": 1,
"no-new": 1,
"no-param-reassign": 1,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"object-curly-spacing": 0,
"prefer-rest-params": 0,
"strict": 0,
"max-len": [
2,
120,
4,
{
"ignoreUrls": true
}
],
"id-length": [
2,
{
"min": 1
}
]
}
}