-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
58 lines (58 loc) · 1.1 KB
/
.eslintrc.json
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
47
48
49
50
51
52
53
54
55
56
57
58
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"airbnb-base",
"airbnb-base/rules/strict"
],
"rules": {
"arrow-parens": [2, "always"],
"guard-for-in": 0,
"id-length": [2, {
"exceptions": ["_", "$", "R", "P", "t", "x", "y", "z", "a", "b", "c", "f", "g"]
}],
"import/imports-first": 0,
"keyword-spacing": 2,
"new-cap": [2, {
"capIsNewExceptions": [
"Async",
"Maybe",
"Just",
"Nothing",
"Task",
"Validation",
"Violation",
"IO",
"Some",
"None",
"Left",
"Right",
"Failure",
"Success",
"Or",
"And",
"Seq",
"ArrayOf",
"ObjectOf",
"Null",
"Undefined",
"FSM",
"State"
]
}],
"no-confusing-arrow": 0,
"no-console": 1,
"padded-blocks": 0,
"semi": [2, "never"],
"sort-imports": [2, {
"ignoreCase": true
}],
"space-before-function-paren": 1,
"spaced-comment": 0,
"vars-on-top": 0
}
}