forked from facebook/taste-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
211 lines (158 loc) · 4.42 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
AllCops:
TargetRubyVersion: 2.4
Exclude:
# template files named `rb` instead of `erb` are a sin against ruby-nature.
- '**/templates/**/*.rb'#
Layout/DotPosition:
EnforcedStyle: trailing
# commented out until we upgrade chefdk to 3.x
# this is misfiring in multiple cookbooks
# Layout/EmptyLinesAroundArguments:
# Enabled: false
# This double-reports what happens in EmptyLines
Layout/EmptyLineBetweenDefs:
Enabled: false
Layout/IndentArray:
EnforcedStyle: consistent
# This recommends using external gems to parse heredocs
Layout/IndentHeredoc:
Enabled: false
# Seems buggy - https://github.com/bbatsov/rubocop/issues/2690
Layout/MultilineOperationIndentation:
Enabled: false
# this is supposedly the default, but turns not not really
# https://github.com/bbatsov/rubocop/issues/5277 fix is in 0.52.1
Layout/SpaceBeforeBlockBraces:
# commenting out until we upgrade to chefdk 3.x
# this config option added in 0.51.0
# EnforcedStyleForEmptyBraces: space
Enabled: false
# no, we're not putting parens around `lazy`
Lint/AmbiguousBlockAssociation:
Enabled: false
# it wants File.exist? instead of File.exists?
Lint/DeprecatedClassMethods:
Enabled: false
Lint/UnneededDisable:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
# Unrealistic
Metrics/BlockNesting:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineLength:
Max: 80
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
# I don't know what it's metric for "human complexity" is, but it's wrong.
Metrics/PerceivedComplexity:
Enabled: false
# commenting out until we upgrade to chefdk 3.x
# Heredocs are fine with "EOF"
# Naming/HeredocDelimiterNaming:
# Enabled: false
# buggy: https://github.com/bbatsov/rubocop/issues/2639
Performance/RedundantMatch:
Enabled: false
# https://github.com/bbatsov/rubocop/issues/2676
Performance/RedundantMerge:
Enabled: false
# disable until we upgrade chef solo to chef 13. Otherwise people will be told
# to use a method that doesn't exist in the verison of ruby in solo
Performance/RegexpMatch:
Enabled: false
# We'll .times.map all we want.
Performance/TimesMap:
Enabled: false
# this trips on *any* method called 'get_*' wtf.
Style/AccessorMethodName:
Enabled: false
# Disabled because of the way 'variables' works.
Style/BracesAroundHashParameters:
Enabled: false
Style/CommentAnnotation:
Enabled: false
# Bug with constants? https://phabricator.fb.com/P56108678
Style/ConditionalAssignment:
Enabled: false
Style/Documentation:
Enabled: false
Style/Encoding:
Enabled: false
# This blows up on things like base_packages-redhat
Style/FileName:
Enabled: false
Style/FormatStringToken:
Enabled: false
# This comes with changing the ruby target to 2.3+
Style/FrozenStringLiteralComment:
Enabled: false
# While this can be nice, it also can promote errors. Let people
# use what's comfortable for them
Style/GuardClause:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
# less readable, not more
Style/IfUnlessModifier:
Enabled: false
# backslash is extra dumb in ruby, we want the OPPOSITE of this rule
Style/LineEndConcatenation:
Enabled: false
Style/MultilineTernaryOperator:
Enabled: false
# So just keep iterating instead of breaking? wtf.
Style/Next:
Enabled: false
Style/NumericLiteralPrefix:
Enabled: false
Style/NumericLiterals:
Enabled: false
# The autocorrect of this one isn't safe, and since using
# numeric predicts may be more or less readable than comparisons
# depending on the code, bugging people about this when we can't
# autocorrect it doesn't seem worth the hastle for our customers
Style/NumericPredicate:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%': '{}'
'%i': '{}'
'%I': '{}'
'%q': '{}'
'%Q': '{}'
'%r': '{}'
'%s': '{}'
'%w': '{}'
'%W': '{}'
'%x': '{}'
# Really?
Style/PerlBackrefs:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/RedundantSelf:
Enabled: false
Style/RegexpLiteral:
EnforcedStyle: mixed
Style/SignalException:
EnforcedStyle: semantic
# It would forbid action [:enable, :start]
Style/SymbolArray:
Enabled: false
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: comma
Style/VariableNumber:
Enabled: false
Style/WordArray:
Enabled: false