-
Notifications
You must be signed in to change notification settings - Fork 137
/
.eslintrc
44 lines (44 loc) · 1.1 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
{
"extends": "eslint:recommended",
"globals": {
"performance": true,
"jasmine": true,
"describe": true,
"xdescribe": true,
"beforeEach": true,
"afterEach": true,
"it": true,
"xit": true,
"expect": true,
"spyOn": true,
"Map": true,
},
"rules": {
"quotes": "off",
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-loop-func": 0,
"eol-last": 0,
"no-use-before-define": 0,
"new-cap": 0,
"no-constant-condition": 0,
"no-cond-assign": "off",
"no-redeclare": 0,
"no-throw-literal": 2,
"indent": "off",
"consistent-this": "off",
"consistent-return": 0,
"no-lonely-if": "off",
"operator-assignment": [2, "always"],
"keyword-spacing": "error",
"curly": "error",
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
"no-console": "off"
},
"env": {
"browser": true,
"node": true,
"amd": true,
"es6": true
}
}