-
Notifications
You must be signed in to change notification settings - Fork 83
/
.rubocop.yml
79 lines (54 loc) · 1.18 KB
/
.rubocop.yml
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
78
79
# TODO: remove this
inherit_from: .rubocop_todo.yml
inherit_gem:
theforeman-rubocop:
- lenient.yml
AllCops:
TargetRubyVersion: 2.7
MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
Max: 30 # default is 10
HashSyntax:
Enabled: false
SpaceInsideHashLiteralBraces:
Enabled: false
Encoding:
Enabled: false
LineLength:
Max: 100
FormatString:
Enabled: false # we use % for i18n
IfUnlessModifier:
Enabled: false
Next:
Enabled: false # don't force next over conditions
MethodCalledOnDoEndBlock:
Enabled: true
LeadingCommentSpace:
Enabled: false
RescueModifier:
Enabled: false
AssignmentInCondition:
Enabled: false
ParameterAlignment:
Enabled: false # don't care if parameters are not aligned
WhileUntilModifier:
Enabled: false
ParenthesesAroundCondition:
Enabled: false
DotPosition:
Enabled: false
Lambda:
Enabled: false # don't require -> for single line lambdas
RedundantSelf:
Enabled: false
RedundantReturn:
Enabled: false
SingleLineBlockParams:
Enabled: false
Style/MultilineMethodCallBraceLayout:
Enabled: false
Style/MultilineHashBraceLayout:
Enabled: false
Style/MultilineArrayBraceLayout:
Enabled: false