forked from rspec/rspec-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
417 lines (300 loc) · 8.38 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
inherit_from:
- .rubocop_todo.yml
AllCops:
Exclude:
# Templates are really ERB which Rubocop does not parse
- bin/**/*
- lib/generators/rspec/*/templates/**/*
Bundler/DuplicatedGem:
Enabled: false
Gemspec/RequiredRubyVersion:
# Rubocop checks that the target ruby version matches the gemspec version
# but doesnt have a 2.2 option
Enabled: false
Layout/AccessModifierIndentation:
Enabled: false
Layout/AssignmentIndentation:
Enabled: false
Layout/BlockAlignment:
EnforcedStyleAlignWith: start_of_block
Layout/ClosingParenthesisIndentation:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Layout/EmptyLineBetweenDefs:
Enabled: false
Layout/EmptyLinesAroundAccessModifier:
Enabled: false
Layout/EmptyLinesAroundBlockBody:
Enabled: false
Layout/ExtraSpacing:
Enabled: false
Layout/FirstArgumentIndentation:
Enabled: false
Layout/FirstArrayElementIndentation:
Enabled: false
Layout/HashAlignment:
Enabled: false
Layout/HeredocIndentation:
Enabled: false
Layout/MultilineMethodCallBraceLayout:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/MultilineOperationIndentation:
Enabled: false
Layout/ParameterAlignment:
EnforcedStyle: with_first_parameter
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
EnforcedStyleForEmptyBraces: no_space
Layout/SpaceInsidePercentLiteralDelimiters:
Enabled: false
# We use spaces, so it's less of a change to stick with that.
Layout/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: space
Layout/SpaceInsideBlockBraces:
EnforcedStyleForEmptyBraces: space
Layout/SpaceAroundBlockParameters:
Enabled: false
Layout/SpaceAroundOperators:
Enabled: false
Layout/SpaceBeforeComma:
Enabled: false
Layout/SpaceInsideStringInterpolation:
Enabled: false
Lint/AmbiguousBlockAssociation:
Exclude:
- spec/**/*
Lint/AmbiguousOperator:
Exclude:
- Rakefile
Lint/AmbiguousRegexpLiteral:
Exclude:
- features/step_definitions/additional_cli_steps.rb
Lint/AssignmentInCondition:
Enabled: false
Lint/DuplicateMethods:
Exclude:
- example_app_generator/no_active_record/app/models/in_memory/model.rb
Lint/NonDeterministicRequireOrder:
Exclude:
- spec/spec_helper.rb
Lint/EmptyExpression:
Enabled: false
Lint/ImplicitStringConcatenation:
Enabled: false
Lint/NestedMethodDefinition:
Enabled: false
# Exceptions should be rescued with `Support::AllExceptionsExceptOnesWeMustNotRescue`
Lint/RescueException:
Enabled: true
Lint/SuppressedException:
Exclude:
# RSpec is tightly coupled to capybara right now, this should be
# re-evaluted in the future. For now we allow the empty rescue
- lib/rspec/rails/vendor/capybara.rb
- example_app_generator/generate_stuff.rb
- example_app_generator/spec/support/default_preview_path
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
# Warns when the class is excessively long.
Metrics/ClassLength:
Max: 100
Metrics/PerceivedComplexity:
Enabled: false
Metrics/ModuleLength:
Exclude:
- spec/**/*
Metrics/ParameterLists:
Exclude:
- example_app_generator/spec/verify_custom_renderers_spec.rb
# Who cares what we call the argument for binary operator methods?
Naming/BinaryOperatorParameterName:
Enabled: false
Naming/ConstantName:
Enabled: false
Naming/FileName:
Exclude:
# We break convention here so that when bundler requires the gem, which
# uses the gem name, things work without user configuration.
- lib/rspec-rails.rb
Naming/HeredocDelimiterNaming:
Enabled: false
Naming/MemoizedInstanceVariableName:
Enabled: false
Naming/MethodParameterName:
Enabled: false
# We have too many special cases where we allow generator methods or prefer a
# prefixed predicate due to it's improved readability.
Naming/PredicateName:
Enabled: false
Naming/RescuedExceptionsVariableName:
Enabled: false
Naming/VariableNumber:
Enabled: false
Style/CollectionMethods:
PreferredMethods:
reduce: 'inject'
Style/AccessModifierDeclarations:
Enabled: false
# "Use alias_method instead of alias"
# We're fine with `alias`.
Style/Alias:
Enabled: false
Style/BlockDelimiters:
Enabled: false
# "Avoid the use of the case equality operator ==="
# We prefer using `Class#===` over `Object#is_a?` because `Class#===`
# is less likely to be monkey patched than `is_a?` on a user object.
Style/CaseEquality:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/ClassCheck:
Enabled: false
Style/CommentedKeyword:
Exclude:
- spec/rspec/rails/example/view_example_group_spec.rb
Style/ConditionalAssignment:
Enabled: false
Style/DateTime:
Enabled: false
# We use YARD to enforce documentation. It works better than rubocop's
# enforcement...rubocop complains about the places we re-open
# `RSpec::Expectations` and `RSpec::Matchers` w/o having doc commments.
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/EmptyMethod:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
Style/EmptyElse:
Enabled: false
Style/FormatString:
EnforcedStyle: percent
Style/FormatStringToken:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/GlobalVars:
Exclude:
- spec/support/shared_examples.rb
Style/GuardClause:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/IdenticalConditionalBranches:
Enabled: false
Style/IfUnlessModifierOfIfUnless:
Enabled: false
Style/IfInsideElse:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/MethodMissingSuper:
Enabled: false
Style/MissingRespondToMissing:
Enabled: false
Style/MixinUsage:
Enabled: false
Style/MultilineIfModifier:
Enabled: false
Style/MultipleComparison:
Enabled: false
Style/MutableConstant:
Enabled: false
Style/NestedModifier:
Enabled: false
Style/NestedParenthesizedCalls:
Enabled: false
Style/NumericLiterals:
Exclude:
- spec/rspec/rails/matchers/action_cable/have_stream_spec.rb
Style/NumericLiteralPrefix:
EnforcedOctalStyle: zero_only
Style/NumericPredicate:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/ParenthesesAroundCondition:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%': () # double-quoted string
'%i': '[]' # array of symbols
'%q': () # single-quoted string
'%Q': () # double-quoted string
'%r': '{}' # regular expression pattern
'%s': () # a symbol
'%w': '[]' # array of single-quoted strings
'%W': '[]' # array of double-quoted strings
'%x': () # a shell command as a string
Style/RaiseArgs:
Exclude:
- spec/rspec/rails/matchers/be_routable_spec.rb
- spec/rspec/rails/matchers/have_rendered_spec.rb
- spec/rspec/rails/matchers/redirect_to_spec.rb
- spec/rspec/rails/matchers/route_to_spec.rb
Style/RegexpLiteral:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/RedundantParentheses:
Enabled: false
Style/RescueStandardError:
Enabled: false
# We haven't adopted the `fail` to signal exceptions vs `raise` for re-raises convention.
Style/SignalException:
Enabled: false
Style/SingleLineMethods:
Exclude:
- spec/rspec/rails/example/controller_example_group_spec.rb
- spec/rspec/rails/matchers/active_job_spec.rb
- spec/rspec/rails/matchers/be_a_new_spec.rb
- spec/rspec/rails/matchers/has_spec.rb
- spec/rspec/rails/matchers/have_enqueued_mail_spec.rb
- spec/rspec/rails/matchers/have_rendered_spec.rb
- spec/rspec/rails/setup_and_teardown_adapter_spec.rb
# This rule favors constant names from the English standard library which we don't load.
Style/SpecialGlobalVars:
Enabled: false
Style/StderrPuts:
Enabled: false
Style/StringLiteralsInInterpolation:
Enabled: false
Style/StructInheritance:
Enabled: false
# We don't care about single vs double qoutes.
Style/StringLiterals:
Enabled: false
Style/SymbolArray:
Enabled: false
Style/SymbolProc:
Enabled: false
Style/TernaryParentheses:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/TrivialAccessors:
AllowDSLWriters: true
AllowPredicates: true
ExactNameMatch: true
Style/TrailingUnderscoreVariable:
Enabled: false
Style/YodaCondition:
Enabled: false
Style/ZeroLengthPredicate:
Enabled: false