-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
36 lines (36 loc) · 964 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
{
"extends": ["strict"],
"globals": {
"_": false,
"ebg": false,
"define": false,
"document": false,
"window": false,
},
"rules": {
"no-var": 0,
"prefer-destructuring": 0,
"no-invalid-this": 0,
"comma-dangle": ["error", "never"],
"object-shorthand": 0,
"space-before-function-paren": ["error", "never"],
"object-curly-spacing": ["error", "never"],
"id-blacklist": 0,
"prefer-template": 0,
"no-magic-numbers": 0,
"func-names": ["error", "never"],
"indent": ["error", 2],
"id-length": ["error", {"exceptions": ["e", "x", "y", "i", "j"]}],
"dot-notation": ["error", {"allowPattern": "_private"}],
"no-underscore-dangle": 0,
"consistent-this": 0,
"no-template-curly-in-string": 0,
"default-case": 0,
"max-params": ["error", 10],
"new-cap": 0,
"array-element-newline": 0,
"strict": 0,
"prefer-arrow-callback": 0,
"no-prototype-builtins": 0
}
}