-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
51 lines (51 loc) · 1.11 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
46
47
48
49
50
51
{
"extends": "airbnb-base",
"env": {
"browser": true,
"jquery": true
},
"globals": {
"CodeMirror": false,
"p3js": false
},
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-useless-path-segments": 0,
"import/prefer-default-export": 0,
"import/no-cycle": 0,
"import/extensions": 0,
"prefer-template": 0,
"consistent-return": 0,
"newline-per-chained-call": 1,
"prefer-destructuring": 0,
"arrow-body-style": 0,
"class-methods-use-this": 0,
"no-constant-condition": 0,
"no-underscore-dangle": 0,
"no-mixed-operators": 0,
"no-param-reassign": 0,
"no-multi-spaces": [2, {
"ignoreEOLComments": true,
"exceptions": {
"BinaryExpression": true
}
}],
"no-unused-vars": [2, {
"args": "none"
}],
"no-cond-assign": 0,
"no-else-return": 0,
"no-plusplus": 0,
"no-continue": 0,
"no-console": 0,
"no-bitwise": 0,
"no-shadow": 0,
"no-alert": 0,
"no-new": 0,
"no-nested-ternary": 0,
"default-case": 0,
"prefer-const": 0,
"camelcase": 0,
"max-len": 0
}
}