forked from atom-haskell/ide-haskell-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffeelint.json
42 lines (42 loc) · 849 Bytes
/
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
{
"arrow_spacing": {
"name": "arrow_spacing",
"level": "error"
},
"ensure_comprehensions": {
"name": "ensure_comprehensions",
"level": "error"
},
"max_line_length": {
"name": "max_line_length",
"value": 120,
"level": "error",
"limitComments": true
},
"indentation": {
"name": "indentation",
"value": 2,
"level": "error"
},
"no_empty_param_list": {
"name": "no_empty_param_list",
"level": "error"
},
"cyclomatic_complexity": {
"name": "cyclomatic_complexity",
"value": 22,
"level": "error"
},
"no_unnecessary_fat_arrows": {
"name": "no_unnecessary_fat_arrows",
"level": "error"
},
"space_operators": {
"name": "space_operators",
"level": "error"
},
"spacing_after_comma": {
"name": "spacing_after_comma",
"level": "error"
}
}