-
Notifications
You must be signed in to change notification settings - Fork 0
/
coffeelint.json
60 lines (60 loc) · 1.08 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
{
"indentation":{
"value":2
},
"prefer_english_operator":{
"level":"error"
},
"line_endings":{
"level":"error",
"value":"unix"
},
"colon_assignment_spacing":{
"name":"colon_assignment_spacing",
"level":"error",
"spacing":{
"left":0,
"right":1
}
},
"max_line_length": {
"name": "max_line_length",
"value": 500,
"level": "warn",
"limitComments": false
},
"space_operators":{
"level":"error"
},
"no_stand_alone_at":{
"level":"error"
},
"arrow_spacing":{
"level":"error"
},
"cyclomatic_complexity":{
"value":"50",
"level":"error"
},
"empty_constructor_needs_parens":{
"level":"error"
},
"no_empty_param_list":{
"level":"error"
},
"no_unnecessary_fat_arrows":{
"level":"error"
},
"no_unnecessary_double_quotes":{
"name":"no_unnecessary_double_quotes",
"level":"error"
},
"no_debugger":{
"name":"no_debugger",
"level":"error"
},
"no_interpolation_in_single_quotes":{
"name":"no_interpolation_in_single_quotes",
"level":"error"
}
}