-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
34 lines (34 loc) · 896 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
{
"extends": ["airbnb-base"],
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
"comma-dangle": ["error", "never"],
"max-len": 0,
"import/prefer-default-export": 0,
"no-extra-boolean-cast": 1,
"arrow-parens": 1,
"class-methods-use-this": 0,
"space-unary-ops": 1,
"no-mixed-operators": 1,
"no-undef": 1,
"no-useless-escape": 1,
"no-lonely-if": 1,
"import/first": 1,
"import/newline-after-import": 1,
"no-plusplus": 0,
"spaced-comment": 1,
"import/extensions": 1,
"no-underscore-dangle": 0
},
"globals": {
"angular": true,
"jQuery": true,
"beforeEach": true,
"describe": true,
"it": true,
"inject": true,
"expect": true,
"spyOn": true,
"jasmine": true
}
}