-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (45 loc) · 1.16 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
{
"extends": "airbnb-base",
"rules": {
"comma-dangle": ["error", "never"],
"consistent-return": "off",
"func-names": "off",
"indent": [
"error",
4, {
"SwitchCase": 1
}
],
"max-len": "off",
"no-else-return": "off",
"no-mixed-spaces-and-tabs": "off",
"no-multi-spaces": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-var": "off",
"no-restricted-syntax": "off",
"no-shadow": "off",
"no-unneeded-ternary": "off",
"object-shorthand": [
"error",
"never"
],
"one-var": "off",
"padded-blocks": "off",
"prefer-arrow-callback": "off",
"prefer-const": "off",
"prefer-rest-params": "off",
"prefer-template": "off",
"quote-props": "off",
"space-before-function-paren": "off",
"spaced-comment": "off",
"strict": "off",
"vars-on-top": "off",
"import/no-unresolved": "off"
},
"globals": {
"$": true,
"APP": true,
"angular": true
}
}