forked from evidenceprime/html-docx-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coffeelint.json
69 lines (69 loc) · 1.41 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
{
"no_tabs": {
"level": "ignore",
"comment": "Checked by other linter"
},
"no_trailing_whitespace": {
"level": "ignore",
"allowed_in_comments": false,
"comment": "Checked by other linter"
},
"max_line_length": {
"value": 100,
"level": "ignore",
"comment": "Checked by other linter"
},
"camel_case_classes": {
"level": "error"
},
"indentation": {
"value": 2,
"level": "error"
},
"no_implicit_braces": {
"level": "ignore"
},
"no_trailing_semicolons": {
"level": "error"
},
"no_plusplus": {
"level": "ignore"
},
"no_throwing_strings": {
"level": "error"
},
"cyclomatic_complexity": {
"value": 10,
"level": "warn"
},
"no_backticks": {
"level": "error"
},
"line_endings": {
"level": "ignore",
"value": "unix",
"comment": "Checked by other linter"
},
"no_implicit_parens": {
"level": "ignore"
},
"no_empty_param_list": {
"level": "error"
},
"space_operators": {
"level": "warn"
},
"duplicate_key": {
"level": "error"
},
"newlines_after_classes": {
"value": 3,
"level": "ignore"
},
"no_stand_alone_at": {
"level": "ignore"
},
"coffeescript_error": {
"level": "error"
}
}