-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoffeelint.json
More file actions
42 lines (42 loc) · 850 Bytes
/
coffeelint.json
File metadata and controls
42 lines (42 loc) · 850 Bytes
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
{
"arrow_spacing": {
"level": "warn"
},
"max_line_length": {
"value": 120,
"level": "warn",
"limitComments": true
},
"missing_fat_arrows": {
"level": "warn"
},
"newlines_after_classes": {
"value": 3,
"level": "ignore"
},
"no_empty_functions": {
"level": "warn"
},
"no_empty_param_list": {
"level": "warn"
},
"no_interpolation_in_single_quotes": {
"level": "warn"
},
"no_trailing_whitespace": {
"level": "warn"
},
"no_unnecessary_double_quotes": {
"level": "warn"
},
"no_unnecessary_fat_arrows": {
"level": "warn"
},
"non_empty_constructor_needs_parens": {
"level": "warn"
},
"braces_spacing": {
"spaces": 0,
"level": "warn"
}
}