-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
41 lines (41 loc) · 992 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
37
38
39
40
41
{
"extends": "airbnb",
"env": {
"node": true,
"jasmine": true,
"jquery": true
},
"rules": {
"no-use-before-define": 0,
"func-names": 0,
"prefer-arrow-callback": 0,
"no-var": 0,
"max-len": 0,
"guard-for-in": 0,
"quotes": ["warn","double"],
"indent": ["warn", "tab"],
"no-tabs": "off",
"import/no-extraneous-dependencies": "off",
"padded-blocks": "off",
"linebreak-style":"off",
"prefer-destructuring": "off",
"no-console": "off",
"no-else-return": "off",
"object-shorthand": 0,
"no-restricted-syntax": 0,
"prefer-template": 0,
"import/no-amd": 0,
"no-unused-vars": "off",
"vars-on-top": "off",
"space-before-function-paren": 0,
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": ["warn", { "aspects": ["invalidHref"] }],
"import/no-unresolved": 0,
"import/extensions": 0
},
"globals": {
"browser": false,
"window": true,
"document": true
}
}