-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcoffeelint.json
77 lines (77 loc) · 1.67 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
77
{
"indentation": {
"value": 4
},
"use_strict": {
"requireGlobal": true,
"module": "coffeelint-use-strict"
},
"braces_spacing": {
"level": "error"
},
"ensure_comprehensions": {
"level": "error"
},
"no_empty_functions": {
"level": "error"
},
"prefer_english_operator": {
"level": "error"
},
"line_endings": {
"level": "error",
"value": "unix"
},
"no_trailing_whitespace": {
"name": "no_trailing_whitespace",
"level": "error",
"allowed_in_comments": false,
"allowed_in_empty_lines": false
},
"colon_assignment_spacing": {
"name": "colon_assignment_spacing",
"level": "error",
"spacing": {
"left": 0,
"right": 1
}
},
"space_operators": {
"level": "error"
},
"newlines_after_classes": {
"value": 3,
"level": "error"
},
"no_stand_alone_at": {
"level": "error"
},
"arrow_spacing": {
"level": "error"
},
"cyclomatic_complexity": {
"value": "12",
"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"
}
}