forked from yairEO/tagify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.25 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
46
{
"rules": {
"no-mixed-spaces-and-tabs" : [2, "smart-tabs"],
"block-spacing" : [2, "always"],
"comma-style" : [2, "last"],
"no-debugger" : [1],
"no-alert" : [1],
"indent" : [1, 4, {"SwitchCase":1}],
"strict" : 0,
"no-undef" : 1
},
"parserOptions": {
"ecmaVersion" : 9,
"sourceType": "module",
"ecmaFeatures": {
"modules": true,
"sourceTyp": "module",
"experimentalObjectRestSpread": true
}
},
"globals" : {
"FB": "readonly",
"ga": "readonly",
"jQuery": "readonly",
"$":"readonly",
"_": "readonly",
"d3": "readonly",
"Router": "readonly",
"ttip": "readonly",
"Cookies": "readonly",
"fastdom": "readonly",
"describe": "readonly",
"beforeEach": "readonly",
"it": "readonly",
"expect": "readonly",
"assert": "readonly",
"done": "readonly",
"dataLayer": "readonly",
"validator": "readonly"
},
"env": {
"es6": true,
"browser": true,
"node": true
}
}