-
Notifications
You must be signed in to change notification settings - Fork 2
/
coffeelint.json
76 lines (76 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"arrow_spacing": {
"level": "warn"
},
"braces_spqacing": {
"level": "warn"
},
"cyclomatic_complexity": {
"level": "warn"
},
"empty_constructor_needs_parens": {
"level": "warn"
},
"eol_last": {
"level": "warn"
},
"line_endings": {
"value": "unix",
"level": "warn"
},
"missing_fat_arrows": {
"level": "ignore"
},
"newlines_after_classes": {
"level": "warn",
"value": 3
},
"no_empty_functions": {
"level": "warn"
},
"no_empty_param_list": {
"level": "warn"
},
"no_interpolation_in_single_quotes": {
"level": "warn"
},
"no_plusplus": {
"level": "warn"
},
"no_stand_alone_at": {
"level": "warn"
},
"non_empty_constructor_needs_parens": {
"level": "warn"
},
"prefer_english_operator": {
"level": "warn"
},
"space_operators": {
"level": "warn"
},
"spacing_after_comma": {
"level": "warn"
},
"colon_assignment_spacing": {
"level": "ignore"
},
"indentation": {
"value": 1
},
"max_line_length": {
"value": 120
},
"no_implicit_braces": {
"level": "ignore"
},
"no_implicit_parens": {
"level": "ignore"
},
"no_tabs": {
"level": "ignore"
},
"no_unnecessary_double_quotes": {
"level": "ignore"
}
}