Skip to content

Commit e34be6f

Browse files
committed
Add CoffeeLint settings
1 parent 967adb9 commit e34be6f

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

coffeelint.json

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"arrow_spacing": {
3+
"level": "ignore"
4+
},
5+
"camel_case_classes": {
6+
"level": "error"
7+
},
8+
"coffeescript_error": {
9+
"level": "error"
10+
},
11+
"colon_assignment_spacing": {
12+
"level": "ignore",
13+
"spacing": {
14+
"left": 0,
15+
"right": 0
16+
}
17+
},
18+
"cyclomatic_complexity": {
19+
"value": 10,
20+
"level": "ignore"
21+
},
22+
"duplicate_key": {
23+
"level": "error"
24+
},
25+
"empty_constructor_needs_parens": {
26+
"level": "ignore"
27+
},
28+
"indentation": {
29+
"value": 2,
30+
"level": "error"
31+
},
32+
"line_endings": {
33+
"level": "ignore",
34+
"value": "unix"
35+
},
36+
"max_line_length": {
37+
"value": 120,
38+
"level": "error",
39+
"limitComments": true
40+
},
41+
"missing_fat_arrows": {
42+
"level": "ignore"
43+
},
44+
"newlines_after_classes": {
45+
"value": 3,
46+
"level": "ignore"
47+
},
48+
"no_backticks": {
49+
"level": "error"
50+
},
51+
"no_debugger": {
52+
"level": "warn"
53+
},
54+
"no_empty_functions": {
55+
"level": "ignore"
56+
},
57+
"no_empty_param_list": {
58+
"level": "ignore"
59+
},
60+
"no_implicit_braces": {
61+
"level": "ignore",
62+
"strict": true
63+
},
64+
"no_implicit_parens": {
65+
"strict": true,
66+
"level": "ignore"
67+
},
68+
"no_interpolation_in_single_quotes": {
69+
"level": "ignore"
70+
},
71+
"no_plusplus": {
72+
"level": "ignore"
73+
},
74+
"no_stand_alone_at": {
75+
"level": "ignore"
76+
},
77+
"no_tabs": {
78+
"level": "error"
79+
},
80+
"no_throwing_strings": {
81+
"level": "error"
82+
},
83+
"no_trailing_semicolons": {
84+
"level": "error"
85+
},
86+
"no_trailing_whitespace": {
87+
"level": "error",
88+
"allowed_in_comments": false,
89+
"allowed_in_empty_lines": true
90+
},
91+
"no_unnecessary_double_quotes": {
92+
"level": "ignore"
93+
},
94+
"no_unnecessary_fat_arrows": {
95+
"level": "warn"
96+
},
97+
"non_empty_constructor_needs_parens": {
98+
"level": "ignore"
99+
},
100+
"space_operators": {
101+
"level": "ignore"
102+
}
103+
}

0 commit comments

Comments
 (0)