forked from baconjs/bacon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coffeelint.json
52 lines (51 loc) · 1 KB
/
coffeelint.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
{
"arrow_spacing": {
"level": "error"
},
"colon_assignment_spacing": {
"level": "error",
"spacing": {
"left": 0,
"right": 1
}
},
"empty_constructor_needs_parens": {
"level": "error"
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"value": 130,
"level": "warn",
"limitComments": true
},
"missing_fat_arrows": {
"level": "ignore"
},
"newlines_after_classes": {
"value": 3,
"level": "error"
},
"no_empty_param_list": {
"level": "error"
},
"no_implicit_braces": {
"level": "error",
"strict": true
},
"no_implicit_parens": {
"strict": true,
"level": "ignore"
},
"no_interpolation_in_single_quotes": {
"level": "warn"
},
"no_stand_alone_at": {
"level": "error"
},
"space_operators": {
"level": "error"
}
}