hammer-cli-import / .rubocop.yml @ master
1 |
BracesAroundHashParameters:
|
---|---|
2 |
Enabled: false |
3 |
|
4 |
ClassLength:
|
5 |
Enabled: false |
6 |
|
7 |
CollectionMethods:
|
8 |
PreferredMethods:
|
9 |
map: collect |
10 |
|
11 |
Documentation:
|
12 |
Enabled: false # don't require documentation |
13 |
|
14 |
Encoding:
|
15 |
Enabled: false |
16 |
|
17 |
HashSyntax:
|
18 |
EnforcedStyle: hash_rockets |
19 |
|
20 |
IfUnlessModifier:
|
21 |
Enabled: false |
22 |
|
23 |
LeadingCommentSpace:
|
24 |
Enabled: false |
25 |
|
26 |
LineLength:
|
27 |
Max: 125 |
28 |
|
29 |
MethodLength:
|
30 |
Max: 50 |
31 |
|
32 |
ModuleLength:
|
33 |
Enabled: false |
34 |
|
35 |
Next:
|
36 |
Enabled: false |
37 |
|
38 |
NumericLiterals:
|
39 |
Enabled: false |
40 |
|
41 |
ParenthesesAroundCondition:
|
42 |
Enabled: false |
43 |
|
44 |
RedundantReturn:
|
45 |
Enabled: false |
46 |
|
47 |
SignalException:
|
48 |
EnforcedStyle: only_raise |
49 |
|
50 |
SpaceInsideHashLiteralBraces:
|
51 |
Enabled: false # we allow spaces inside hash brackets |
52 |
|
53 |
Metrics/CyclomaticComplexity:
|
54 |
Max: 11 |
55 |
|
56 |
Metrics/PerceivedComplexity:
|
57 |
Max: 11 |
58 |
|
59 |
Metrics/AbcSize:
|
60 |
Max: 64 |
61 |
|