-
Notifications
You must be signed in to change notification settings - Fork 95
/
coffeelint.json
48 lines (48 loc) · 871 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
43
44
45
46
47
48
{
"camel_case_classes": {
"level": "error"
},
"max_line_length": {
"value": 125,
"level": "ignore",
"limitComments": false
},
"no_backticks": {
"level": "ignore"
},
"no_debugger": {
"level": "warn"
},
"no_plusplus": {
"level": "error"
},
"no_stand_alone_at": {
"level": "ignore"
},
"no_tabs": {
"level": "error"
},
"no_throwing_strings": {
"level": "ignore"
},
"no_trailing_semicolons": {
"level": "error"
},
"no_trailing_whitespace": {
"level": "error",
"allowed_in_comments": true,
"allowed_in_empty_lines": true
},
"no_unnecessary_double_quotes": {
"level": "error"
},
"no_unnecessary_fat_arrows": {
"level": "error"
},
"non_empty_constructor_needs_parens": {
"level": "ignore"
},
"no_interpolation_in_single_quotes":{
"level": "error"
}
}