-
Notifications
You must be signed in to change notification settings - Fork 3
/
.rubocop.yml
215 lines (160 loc) · 4.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
AllCops:
# this version is based on the current requirements of FB cookbooks,
# even though we are on a later version of Ruby
TargetRubyVersion: 2.5
NewCops: enable
# Disabled rules
#
Style/Encoding:
Enabled: false
Style/NumericLiterals:
Enabled: false
Style/MultilineTernaryOperator:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Style/FormatStringToken:
Enabled: false
# It would forbid action [:enable, :start]
Style/SymbolArray:
Enabled: false
# This recommends using external gems to parse heredocs
Layout/HeredocIndentation:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
# So just keep iterating instead of breaking? wtf.
Style/Next:
Enabled: false
# While this can be nice, it also can promote errors. Let people
# use what's comfortable for them
Style/GuardClause:
Enabled: false
Metrics/AbcSize:
Enabled: false
# less readable, not more
Style/IfUnlessModifier:
Enabled: false
# Really?
Style/PerlBackrefs:
Enabled: false
# Unrealistic
Metrics/BlockNesting:
Enabled: false
Style/WordArray:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/RedundantSelf:
Enabled: false
Style/CommentAnnotation:
Enabled: false
# this trips on *any* method called 'get_*' wtf.
Naming/AccessorMethodName:
Enabled: false
# backslash is extra dumb in ruby, we want the OPPOSITE of this rule
Style/LineEndConcatenation:
Enabled: false
# We generally do interpolation, but prefer concat for line-breaks
Style/StringConcatenation:
Enabled: false
# This blows up on things like base_packages-redhat
Naming/FileName:
Enabled: false
# I don't know what it's metric for "human complexity" is, but it's wrong.
Metrics/PerceivedComplexity:
Enabled: false
# https://github.com/bbatsov/rubocop/issues/2676
# but not yet in our version of RC
#Performance/RedundantMerge:
# Enabled: false
# Bug with constants? https://phabricator.fb.com/P56108678
Style/ConditionalAssignment:
Enabled: false
# Heredocs are fine with "EOF"
Naming/HeredocDelimiterNaming:
Enabled: false
# This double-reports what happens in EmptyLines
Layout/EmptyLineBetweenDefs:
Enabled: false
Naming/MethodParameterName:
Enabled: false
# this removes disablign for cops whose names have changed, but
# that breaks lint for upstream and for Jenkins
Lint/RedundantCopDisableDirective:
Enabled: false
Style/NumericLiteralPrefix:
Enabled: false
Naming/VariableNumber:
Enabled: false
# no, we're not putting parens around `lazy`
Lint/AmbiguousBlockAssociation:
Enabled: false
# this is misfiring in multiple cookbooks
Layout/EmptyLinesAroundArguments:
Enabled: false
#
# Modified rules
#
Layout/LineLength:
Enabled: true
Max: 80
Layout/DotPosition:
Enabled: true
EnforcedStyle: trailing
Style/HashSyntax:
Enabled: true
EnforcedStyle: hash_rockets
Style/Documentation:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: true
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
Enabled: true
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArguments:
Enabled: true
EnforcedStyleForMultiline: comma
Layout/FirstArrayElementIndentation:
Enabled: true
EnforcedStyle: consistent
Style/SignalException:
Enabled: true
EnforcedStyle: semantic
Style/RegexpLiteral:
EnforcedStyle: mixed
Metrics/BlockLength:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: '{}'
'%i': '{}'
'%I': '{}'
'%w': '{}'
'%W': '{}'
'%r': '{}'
'%': '{}'
# this is supposedly the default, but turns not not really
# https://github.com/bbatsov/rubocop/issues/5277
Layout/SpaceBeforeBlockBraces:
EnforcedStyleForEmptyBraces: space
# EnforcedStyle is what we want, but enablign this now will cause
# a ton of churn with upstream cookbooks
Layout/MultilineOperationIndentation:
Enabled: false
EnforcedStyle: indented
Style/NumericPredicate:
Enabled: false
Style/FrozenStringLiteralComment:
EnforcedStyle: never
# need fb cookbooks to catch up to modern ruby a bit first
Style/OptionalBooleanParameter:
Enabled: false
# Chef does this by design all over
Lint/ConstantDefinitionInBlock:
Enabled: false