newrelic_rpm 9.2.2 → 9.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.build_ignore +21 -0
  3. data/CHANGELOG.md +55 -0
  4. data/README.md +4 -4
  5. data/lib/new_relic/agent/configuration/default_source.rb +77 -29
  6. data/lib/new_relic/agent/configuration/manager.rb +3 -2
  7. data/lib/new_relic/agent/configuration/yaml_source.rb +13 -0
  8. data/lib/new_relic/agent/instrumentation/active_record.rb +1 -1
  9. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +2 -1
  10. data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +1 -1
  11. data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +1 -2
  12. data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +1 -1
  13. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +10 -3
  14. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +1 -2
  15. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +10 -3
  16. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +3 -3
  17. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +1 -1
  18. data/lib/new_relic/agent/instrumentation/thread/chain.rb +1 -1
  19. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +0 -1
  20. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
  21. data/lib/new_relic/agent/log_event_aggregator.rb +49 -2
  22. data/lib/new_relic/agent/log_event_attributes.rb +115 -0
  23. data/lib/new_relic/agent/logging.rb +4 -4
  24. data/lib/new_relic/agent/method_tracer_helpers.rb +26 -5
  25. data/lib/new_relic/agent/tracer.rb +2 -2
  26. data/lib/new_relic/agent.rb +37 -0
  27. data/lib/new_relic/dependency_detection.rb +6 -0
  28. data/lib/new_relic/latest_changes.rb +1 -1
  29. data/lib/new_relic/supportability_helper.rb +1 -0
  30. data/lib/new_relic/traced_thread.rb +2 -3
  31. data/lib/new_relic/version.rb +2 -2
  32. data/lib/sequel/extensions/new_relic_instrumentation.rb +1 -1
  33. data/lib/tasks/bump_version.rake +21 -0
  34. data/lib/tasks/helpers/newrelicyml.rb +144 -0
  35. data/lib/tasks/helpers/version_bump.rb +62 -0
  36. data/lib/tasks/multiverse.rb +0 -8
  37. data/lib/tasks/newrelicyml.rake +13 -0
  38. data/newrelic.yml +307 -266
  39. data/newrelic_rpm.gemspec +5 -4
  40. metadata +12 -22
  41. data/.gitignore +0 -43
  42. data/.project +0 -23
  43. data/.rubocop.yml +0 -1845
  44. data/.rubocop_todo.yml +0 -61
  45. data/.simplecov +0 -16
  46. data/.snyk +0 -11
  47. data/.yardopts +0 -27
  48. data/Brewfile +0 -13
  49. data/DOCKER.md +0 -167
  50. data/Dockerfile +0 -10
  51. data/Guardfile +0 -27
  52. data/config/database.yml +0 -5
  53. data/config.dot +0 -278
  54. data/docker-compose.yml +0 -107
  55. data/lefthook.yml +0 -9
  56. data/test/agent_helper.rb +0 -1027
data/.rubocop.yml DELETED
@@ -1,1845 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- require:
4
- # Default minitest configurations: https://github.com/rubocop/rubocop-minitest/blob/master/config/default.yml
5
- - rubocop-minitest
6
- # Default performance configurations: https://github.com/rubocop/rubocop-performance/blob/master/config/default.yml
7
- - rubocop-performance
8
- # Default rake configurations: https://github.com/rubocop/rubocop-rake/blob/master/config/default.yml
9
- - rubocop-rake
10
-
11
- AllCops:
12
- TargetRubyVersion: 2.7
13
- # Rubocop shouldn't run on auto generated files.
14
- Exclude:
15
- - 'test/multiverse/suites/active_record/db/schema.rb'
16
- - 'test/multiverse/suites/active_record_pg/db/schema.rb'
17
-
18
- # New cops
19
- Layout/LineContinuationLeadingSpace: # new in 1.31
20
- Enabled: true
21
- Layout/LineContinuationSpacing: # new in 1.31
22
- Enabled: true
23
- Lint/ConstantOverwrittenInRescue: # new in 1.31
24
- Enabled: true
25
- Lint/DuplicateMagicComment: # new in 1.37
26
- Enabled: true
27
- Lint/NonAtomicFileOperation: # new in 1.31
28
- Enabled: true
29
- Lint/RefinementImportMethods: # new in 1.27
30
- Enabled: true
31
- Lint/RequireRangeParentheses: # new in 1.32
32
- Enabled: true
33
- Lint/UselessRuby2Keywords: # new in 1.23
34
- Enabled: true
35
- Naming/BlockForwarding: # new in 1.24
36
- Enabled: true
37
- Security/CompoundHash: # new in 1.28
38
- Enabled: true
39
- Style/ArrayIntersect: # new in 1.40
40
- Enabled: true
41
- Style/EmptyHeredoc: # new in 1.32
42
- Enabled: true
43
- Style/FileRead: # new in 1.24
44
- Enabled: true
45
- Style/FileWrite: # new in 1.24
46
- Enabled: true
47
- Style/MagicCommentFormat: # new in 1.35
48
- Enabled: true
49
- Style/MapCompactWithConditionalBlock: # new in 1.30
50
- Enabled: true
51
- Style/MapToSet: # new in 1.42
52
- Enabled: true
53
- Style/MinMaxComparison: # new in 1.42
54
- Enabled: true
55
- Style/NestedFileDirname: # new in 1.26
56
- Enabled: true
57
- Style/ObjectThen: # new in 1.28
58
- Enabled: true
59
- Style/OperatorMethodCall: # new in 1.37
60
- Enabled: true
61
- Style/RedundantConstantBase: # new in 1.40
62
- Enabled: true
63
- Style/RedundantDoubleSplatHashBraces: # new in 1.41
64
- Enabled: true
65
- Style/RedundantEach: # new in 1.38
66
- Enabled: true
67
- Style/RedundantInitialize: # new in 1.27
68
- Enabled: true
69
- Style/RedundantStringEscape: # new in 1.37, 'pending' by default so enabled to make sure it's applied
70
- Enabled: true
71
- Style/YodaExpression: # new in 1.42
72
- Enabled: true
73
- Minitest/AssertKindOf: # new in 0.10
74
- Enabled: true
75
- Minitest/AssertOutput: # new in 0.10
76
- Enabled: true
77
- Minitest/AssertPathExists: # new in 0.10
78
- Enabled: true
79
- Minitest/AssertPredicate: # new in 0.18
80
- Enabled: true
81
- Minitest/AssertRaisesCompoundBody: # new in 0.21
82
- Enabled: true
83
- Minitest/AssertRaisesWithRegexpArgument: # new in 0.22
84
- Enabled: true
85
- Minitest/AssertSilent: # new in 0.10
86
- Enabled: true
87
- Minitest/AssertWithExpectedArgument: # new in 0.11
88
- Enabled: true
89
- Minitest/AssertionInLifecycleHook: # new in 0.10
90
- Enabled: true
91
- Minitest/DuplicateTestRun: # new in 0.19
92
- Enabled: true
93
- Minitest/EmptyLineBeforeAssertionMethods: # new in 0.23
94
- Enabled: true
95
- Minitest/LiteralAsActualArgument: # new in 0.10
96
- Enabled: true
97
- Minitest/MultipleAssertions: # new in 0.10
98
- Enabled: true
99
- Minitest/RefuteInDelta: # new in 0.10
100
- Enabled: true
101
- Minitest/RefuteKindOf: # new in 0.10
102
- Enabled: true
103
- Minitest/RefutePathExists: # new in 0.10
104
- Enabled: true
105
- Minitest/SkipEnsure: # new in 0.20
106
- Enabled: true
107
- Minitest/SkipWithoutReason: # new in 0.24
108
- Enabled: true
109
- Minitest/UnreachableAssertion: # new in 0.14
110
- Enabled: true
111
- Minitest/UnspecifiedException: # new in 0.10
112
- Enabled: true
113
- Performance/AncestorsInclude: # new in 1.7
114
- Enabled: true
115
- Performance/BigDecimalWithNumericArgument: # new in 1.7
116
- Enabled: true
117
- Performance/BlockGivenWithExplicitBlock: # new in 1.9
118
- Enabled: true
119
- Performance/CollectionLiteralInLoop: # new in 1.8
120
- Enabled: true
121
- Performance/ConcurrentMonotonicTime: # new in 1.12
122
- Enabled: true
123
- Performance/ConstantRegexp: # new in 1.9
124
- Enabled: true
125
- Performance/RedundantEqualityComparisonBlock: # new in 1.10
126
- Enabled: true
127
- Performance/RedundantSortBlock: # new in 1.7
128
- Enabled: true
129
- Performance/RedundantSplitRegexpArgument: # new in 1.10
130
- Enabled: true
131
- Performance/RedundantStringChars: # new in 1.7
132
- Enabled: true
133
- Performance/ReverseFirst: # new in 1.7
134
- Enabled: true
135
- Performance/SortReverse: # new in 1.7
136
- Enabled: true
137
- Performance/Squeeze: # new in 1.7
138
- Enabled: true
139
- Performance/StringIdentifierArgument: # new in 1.13
140
- Enabled: true
141
- Performance/StringInclude: # new in 1.7
142
- Enabled: true
143
- Performance/Sum: # new in 1.8, pending so left enabled explicitly until 2.0
144
- Enabled: true
145
-
146
- # Old cops
147
-
148
- Bundler/DuplicatedGem:
149
- Enabled: true
150
- Include:
151
- - '**/*.gemfile'
152
- - '**/Gemfile'
153
- - '**/gems.rb'
154
- - '**/*.gemspec'
155
-
156
- Bundler/GemComment:
157
- Enabled: false
158
-
159
- Bundler/GemFilename:
160
- Enabled: false
161
-
162
- Bundler/GemVersion:
163
- Enabled: false
164
-
165
- Bundler/InsecureProtocolSource:
166
- Enabled: true
167
- Include:
168
- - '**/*.gemfile'
169
- - '**/Gemfile'
170
- - '**/gems.rb'
171
-
172
- Bundler/OrderedGems:
173
- Enabled: false
174
-
175
- Gemspec/DeprecatedAttributeAssignment:
176
- Enabled: true
177
-
178
- Gemspec/DuplicatedAssignment:
179
- Enabled: true
180
- Include:
181
- - '**/*.gemspec'
182
-
183
- Gemspec/OrderedDependencies:
184
- Enabled: false
185
-
186
- Gemspec/RequireMFA:
187
- Enabled: false
188
-
189
- Gemspec/RequiredRubyVersion:
190
- Enabled: false
191
-
192
- Gemspec/RubyVersionGlobalsUsage:
193
- Enabled: false
194
-
195
- Layout/AccessModifierIndentation:
196
- Enabled: true
197
- EnforcedStyle: indent
198
- IndentationWidth: ~
199
-
200
- Layout/ArgumentAlignment:
201
- Enabled: true
202
- EnforcedStyle: with_fixed_indentation
203
-
204
- Layout/ArrayAlignment:
205
- Enabled: true
206
- EnforcedStyle: with_fixed_indentation
207
-
208
- Layout/AssignmentIndentation:
209
- Enabled: true
210
- IndentationWidth: ~
211
-
212
- Layout/BeginEndAlignment:
213
- Enabled: true
214
- EnforcedStyleAlignWith: start_of_line
215
- AutoCorrect: true
216
- Severity: warning
217
-
218
- Layout/BlockAlignment:
219
- Enabled: true
220
- EnforcedStyleAlignWith: either
221
-
222
- Layout/BlockEndNewline:
223
- Enabled: true
224
-
225
- Layout/CaseIndentation:
226
- # Disabled because IndentOneStep can't be configured for one-liner cases. See:
227
- # https://github.com/rubocop-hq/rubocop/issues/6447
228
- Enabled: false
229
-
230
- Layout/ClassStructure:
231
- Enabled: false
232
-
233
- Layout/ClosingHeredocIndentation:
234
- Enabled: true
235
-
236
- Layout/ClosingParenthesisIndentation:
237
- Enabled: true
238
-
239
- Layout/CommentIndentation:
240
- Enabled: true
241
-
242
- Layout/DefEndAlignment:
243
- Enabled: true
244
- EnforcedStyleAlignWith: start_of_line
245
- AutoCorrect: true
246
- Severity: warning
247
-
248
- Layout/DotPosition:
249
- Enabled: true
250
- EnforcedStyle: leading
251
-
252
- Layout/ElseAlignment:
253
- Enabled: true
254
-
255
- Layout/EmptyComment:
256
- Enabled: true
257
- AllowBorderComment: true
258
- AllowMarginComment: true
259
-
260
- Layout/EmptyLineAfterMultilineCondition:
261
- Enabled: false
262
-
263
- Layout/EmptyLines:
264
- Enabled: true
265
-
266
- Layout/EmptyLinesAroundAccessModifier:
267
- Enabled: true
268
-
269
- Layout/EmptyLinesAroundArguments:
270
- Enabled: true
271
-
272
- Layout/EmptyLinesAroundAttributeAccessor:
273
- Enabled: false
274
-
275
- Layout/EmptyLinesAroundBeginBody:
276
- Enabled: true
277
-
278
- Layout/EmptyLinesAroundBlockBody:
279
- Enabled: true
280
- EnforcedStyle: no_empty_lines
281
-
282
- Layout/EmptyLinesAroundClassBody:
283
- Enabled: true
284
- EnforcedStyle: no_empty_lines
285
-
286
- Layout/EmptyLinesAroundExceptionHandlingKeywords:
287
- Enabled: true
288
-
289
- Layout/EmptyLinesAroundMethodBody:
290
- Enabled: true
291
-
292
- Layout/EmptyLinesAroundModuleBody:
293
- Enabled: true
294
- EnforcedStyle: no_empty_lines
295
-
296
- Layout/EndAlignment:
297
- Enabled: true
298
- AutoCorrect: true
299
- EnforcedStyleAlignWith: variable
300
- Severity: warning
301
-
302
- Layout/EndOfLine:
303
- Enabled: true
304
- EnforcedStyle: native
305
-
306
- Layout/ExtraSpacing:
307
- Enabled: true
308
- AllowForAlignment: false
309
- AllowBeforeTrailingComments: false
310
- ForceEqualSignAlignment: false
311
-
312
- Layout/FirstArgumentIndentation:
313
- Enabled: true
314
- EnforcedStyle: consistent
315
- IndentationWidth: ~
316
-
317
- Layout/FirstArrayElementIndentation:
318
- Enabled: true
319
- EnforcedStyle: consistent
320
- IndentationWidth: ~
321
-
322
- Layout/FirstArrayElementLineBreak:
323
- Enabled: false
324
-
325
- Layout/FirstHashElementIndentation:
326
- Enabled: true
327
- EnforcedStyle: consistent
328
- IndentationWidth: ~
329
-
330
- Layout/FirstHashElementLineBreak:
331
- Enabled: false
332
-
333
- Layout/FirstMethodArgumentLineBreak:
334
- Enabled: false
335
-
336
- Layout/FirstMethodParameterLineBreak:
337
- Enabled: false
338
-
339
- Layout/FirstParameterIndentation:
340
- Enabled: false
341
-
342
- Layout/HashAlignment:
343
- Enabled: true
344
- EnforcedHashRocketStyle: key
345
- EnforcedColonStyle: key
346
- EnforcedLastArgumentHashStyle: always_inspect
347
-
348
- Layout/HeredocArgumentClosingParenthesis:
349
- Enabled: false
350
-
351
- Layout/IndentationConsistency:
352
- Enabled: true
353
- EnforcedStyle: normal
354
-
355
- Layout/IndentationStyle:
356
- Enabled: true
357
- IndentationWidth: ~
358
-
359
- Layout/IndentationWidth:
360
- Enabled: true
361
- Width: 2
362
- AllowedPatterns: []
363
-
364
- Layout/InitialIndentation:
365
- Enabled: true
366
-
367
- Layout/LeadingCommentSpace:
368
- Enabled: true
369
-
370
- Layout/LeadingEmptyLines:
371
- Enabled: true
372
-
373
- Layout/LineEndStringConcatenationIndentation:
374
- Enabled: false
375
-
376
- Layout/LineLength:
377
- # TODO: get this down to something closer to the 80 col ideal
378
- # we should be able to manage 120
379
- Max: 576
380
-
381
- Layout/MultilineArrayBraceLayout:
382
- Enabled: true
383
- EnforcedStyle: symmetrical
384
-
385
- Layout/MultilineArrayLineBreaks:
386
- Enabled: false
387
-
388
- Layout/MultilineAssignmentLayout:
389
- Enabled: false
390
-
391
- Layout/MultilineBlockLayout:
392
- Enabled: true
393
-
394
- Layout/MultilineHashBraceLayout:
395
- Enabled: true
396
- EnforcedStyle: symmetrical
397
-
398
- Layout/MultilineHashKeyLineBreaks:
399
- Enabled: false
400
-
401
- Layout/MultilineMethodArgumentLineBreaks:
402
- Enabled: false
403
-
404
- Layout/MultilineMethodCallBraceLayout:
405
- Enabled: true
406
- EnforcedStyle: symmetrical
407
-
408
- Layout/MultilineMethodCallIndentation:
409
- Enabled: true
410
- EnforcedStyle: indented
411
- IndentationWidth: ~
412
-
413
- Layout/MultilineMethodDefinitionBraceLayout:
414
- Enabled: true
415
- EnforcedStyle: symmetrical
416
-
417
- Layout/MultilineOperationIndentation:
418
- Enabled: true
419
- EnforcedStyle: indented
420
- IndentationWidth: ~
421
-
422
- Layout/ParameterAlignment:
423
- Enabled: true
424
- EnforcedStyle: with_fixed_indentation
425
- IndentationWidth: ~
426
-
427
- Layout/RedundantLineBreak:
428
- Enabled: false
429
-
430
- Layout/RescueEnsureAlignment:
431
- Enabled: true
432
-
433
- Layout/SingleLineBlockChain:
434
- Enabled: false
435
-
436
- Layout/SpaceAfterColon:
437
- Enabled: true
438
-
439
- Layout/SpaceAfterComma:
440
- Enabled: true
441
-
442
- Layout/SpaceAfterMethodName:
443
- Enabled: true
444
-
445
- Layout/SpaceAfterNot:
446
- Enabled: true
447
-
448
- Layout/SpaceAfterSemicolon:
449
- Enabled: true
450
-
451
- Layout/SpaceAroundBlockParameters:
452
- Enabled: true
453
- EnforcedStyleInsidePipes: no_space
454
-
455
- Layout/SpaceAroundEqualsInParameterDefault:
456
- Enabled: true
457
- EnforcedStyle: space
458
-
459
- Layout/SpaceAroundKeyword:
460
- Enabled: true
461
-
462
- Layout/SpaceAroundMethodCallOperator:
463
- Enabled: true
464
-
465
- Layout/SpaceAroundOperators:
466
- Enabled: true
467
- AllowForAlignment: true
468
-
469
- Layout/SpaceBeforeBlockBraces:
470
- Enabled: true
471
- EnforcedStyle: space
472
- EnforcedStyleForEmptyBraces: space
473
-
474
- Layout/SpaceBeforeBrackets:
475
- Enabled: false
476
-
477
- Layout/SpaceBeforeComma:
478
- Enabled: true
479
-
480
- Layout/SpaceBeforeComment:
481
- Enabled: true
482
-
483
- Layout/SpaceBeforeFirstArg:
484
- Enabled: true
485
- AllowForAlignment: true
486
-
487
- Layout/SpaceBeforeSemicolon:
488
- Enabled: true
489
-
490
- Layout/SpaceInsideArrayLiteralBrackets:
491
- Enabled: true
492
- EnforcedStyle: no_space
493
- EnforcedStyleForEmptyBrackets: no_space
494
-
495
- Layout/SpaceInsideArrayPercentLiteral:
496
- Enabled: true
497
-
498
- Layout/SpaceInsideBlockBraces:
499
- Enabled: true
500
- EnforcedStyle: space
501
- EnforcedStyleForEmptyBraces: no_space
502
- SpaceBeforeBlockParameters: true
503
-
504
- Layout/SpaceInsideHashLiteralBraces:
505
- Enabled: true
506
- EnforcedStyle: no_space
507
- EnforcedStyleForEmptyBraces: no_space
508
-
509
- Layout/SpaceInsideParens:
510
- Enabled: true
511
- EnforcedStyle: no_space
512
-
513
- Layout/SpaceInsideRangeLiteral:
514
- Enabled: true
515
-
516
- Layout/SpaceInsideReferenceBrackets:
517
- Enabled: true
518
- EnforcedStyle: no_space
519
- EnforcedStyleForEmptyBrackets: no_space
520
-
521
- Layout/SpaceInsideStringInterpolation:
522
- Enabled: true
523
- EnforcedStyle: no_space
524
-
525
- Layout/TrailingEmptyLines:
526
- Enabled: true
527
- EnforcedStyle: final_newline
528
-
529
- Layout/TrailingWhitespace:
530
- Enabled: true
531
- AllowInHeredoc: true
532
-
533
- Lint/AmbiguousAssignment:
534
- Enabled: true
535
-
536
- Lint/AmbiguousBlockAssociation:
537
- Enabled: false
538
-
539
- Lint/AmbiguousOperatorPrecedence:
540
- Enabled: false
541
-
542
- Lint/AmbiguousRange:
543
- Enabled: false
544
-
545
- Lint/AssignmentInCondition:
546
- Enabled: false
547
-
548
- Lint/BigDecimalNew:
549
- Enabled: true
550
-
551
- Lint/BinaryOperatorWithIdenticalOperands:
552
- Enabled: false
553
-
554
- Lint/CircularArgumentReference:
555
- Enabled: true
556
-
557
- Lint/ConstantDefinitionInBlock:
558
- Enabled: false
559
-
560
- Lint/ConstantResolution:
561
- Enabled: false
562
-
563
- Lint/Debugger:
564
- Enabled: true
565
-
566
- Lint/DeprecatedConstants:
567
- Enabled: true
568
-
569
- Lint/DeprecatedOpenSSLConstant:
570
- Enabled: true
571
-
572
- Lint/DisjunctiveAssignmentInConstructor:
573
- Enabled: false
574
-
575
- Lint/DuplicateBranch:
576
- Enabled: false
577
-
578
- Lint/DuplicateElsifCondition:
579
- Enabled: true
580
-
581
- Lint/DuplicateHashKey:
582
- Enabled: true
583
-
584
- Lint/DuplicateRegexpCharacterClassElement:
585
- Enabled: true
586
-
587
- Lint/DuplicateRequire:
588
- Enabled: true
589
-
590
- Lint/DuplicateRescueException:
591
- Enabled: true
592
-
593
- Lint/EachWithObjectArgument:
594
- Enabled: true
595
-
596
- Lint/ElseLayout:
597
- Enabled: true
598
-
599
- Lint/EmptyBlock:
600
- Enabled: false
601
-
602
- Lint/EmptyClass:
603
- Enabled: false
604
-
605
- Lint/EmptyConditionalBody:
606
- Enabled: false
607
-
608
- Lint/EmptyExpression:
609
- Enabled: true
610
-
611
- Lint/EmptyFile:
612
- Enabled: false
613
-
614
- Lint/EmptyInPattern:
615
- Enabled: false
616
-
617
- Lint/EmptyInterpolation:
618
- Enabled: true
619
-
620
- Lint/EmptyWhen:
621
- Enabled: true
622
- AllowComments: true
623
-
624
- Lint/ErbNewArguments:
625
- Enabled: true
626
-
627
- Lint/FlipFlop:
628
- Enabled: true
629
-
630
- # Disabling for now
631
- Lint/FloatComparison:
632
- Enabled: false
633
-
634
- Lint/FloatOutOfRange:
635
- Enabled: true
636
-
637
- Lint/FormatParameterMismatch:
638
- Enabled: true
639
-
640
- Lint/HashCompareByIdentity:
641
- Enabled: false
642
-
643
- Lint/HeredocMethodCallPosition:
644
- Enabled: false
645
-
646
- Lint/IdentityComparison:
647
- Enabled: true
648
-
649
- Lint/ImplicitStringConcatenation:
650
- Enabled: true
651
-
652
- # Disabling for now
653
- Lint/IneffectiveAccessModifier:
654
- Enabled: false
655
-
656
- # Disabling for now
657
- Lint/InheritException:
658
- Enabled: false
659
- # EnforcedStyle: runtime_error
660
-
661
- # Disabling for now
662
- Lint/InterpolationCheck:
663
- Enabled: false
664
-
665
- Lint/LambdaWithoutLiteralBlock:
666
- Enabled: false
667
-
668
- Lint/LiteralAsCondition:
669
- Enabled: true
670
-
671
- Lint/LiteralInInterpolation:
672
- Enabled: true
673
-
674
- Lint/Loop:
675
- Enabled: true
676
-
677
- Lint/MissingCopEnableDirective:
678
- Enabled: true
679
- MaximumRangeSize: .inf
680
-
681
- Lint/MissingSuper:
682
- Enabled: false
683
-
684
- Lint/MixedRegexpCaptureTypes:
685
- Enabled: true
686
-
687
- Lint/MultipleComparison:
688
- Enabled: true
689
-
690
- # Disabling for now
691
- Lint/NestedMethodDefinition:
692
- Enabled: false
693
-
694
- Lint/NestedPercentLiteral:
695
- Enabled: true
696
-
697
- Lint/NextWithoutAccumulator:
698
- Enabled: true
699
-
700
- Lint/NoReturnInBeginEndBlocks:
701
- Enabled: false
702
-
703
- # Disabling for now
704
- Lint/NonDeterministicRequireOrder:
705
- Enabled: false
706
-
707
- # Disabling for now
708
- Lint/NonLocalExitFromIterator:
709
- Enabled: false
710
-
711
- Lint/NumberConversion:
712
- Enabled: false
713
-
714
- Lint/NumberedParameterAssignment:
715
- Enabled: true
716
-
717
- Lint/OrAssignmentToConstant:
718
- Enabled: false
719
-
720
- Lint/OrderedMagicComments:
721
- Enabled: true
722
-
723
- Lint/OutOfRangeRegexpRef:
724
- Enabled: true
725
-
726
- # Disabling for now
727
- Lint/ParenthesesAsGroupedExpression:
728
- Enabled: false
729
-
730
- Lint/PercentStringArray:
731
- Enabled: false
732
-
733
- Lint/PercentSymbolArray:
734
- Enabled: true
735
-
736
- # Disabling for now
737
- Lint/RaiseException:
738
- Enabled: false
739
-
740
- Lint/RandOne:
741
- Enabled: true
742
-
743
- Lint/RedundantCopDisableDirective:
744
- Enabled: true
745
-
746
- Lint/RedundantCopEnableDirective:
747
- Enabled: false
748
-
749
- Lint/RedundantDirGlobSort:
750
- Enabled: false
751
-
752
- # Disabling for now
753
- Lint/RedundantRequireStatement:
754
- Enabled: false
755
-
756
- Lint/RedundantSafeNavigation:
757
- Enabled: false
758
-
759
- # Disabling for now
760
- Lint/RedundantSplatExpansion:
761
- Enabled: false
762
-
763
- # Disabling for now
764
- Lint/RedundantStringCoercion:
765
- Enabled: false
766
-
767
- Lint/RedundantWithIndex:
768
- Enabled: true
769
-
770
- Lint/RedundantWithObject:
771
- Enabled: true
772
-
773
- Lint/RegexpAsCondition:
774
- Enabled: true
775
-
776
- Lint/RequireParentheses:
777
- Enabled: true
778
-
779
- # Disabling for now
780
- Lint/RescueException:
781
- Enabled: false
782
-
783
- Lint/RescueType:
784
- Enabled: true
785
-
786
- Lint/ReturnInVoidContext:
787
- Enabled: true
788
-
789
- Lint/SafeNavigationChain:
790
- Enabled: true
791
- AllowedMethods:
792
- - present?
793
- - blank?
794
- - presence
795
- - try
796
- - try!
797
-
798
- Lint/SafeNavigationConsistency:
799
- Enabled: true
800
- AllowedMethods:
801
- - present?
802
- - blank?
803
- - presence
804
- - try
805
- - try!
806
-
807
- Lint/SafeNavigationWithEmpty:
808
- Enabled: true
809
-
810
- Lint/ScriptPermission:
811
- Enabled: false
812
-
813
- Lint/SelfAssignment:
814
- Enabled: true
815
-
816
- Lint/SendWithMixinArgument:
817
- Enabled: false
818
-
819
- # Disabling for now
820
- Lint/ShadowedArgument:
821
- Enabled: false
822
- # IgnoreImplicitReferences: false
823
-
824
- # Disabling for now
825
- Lint/ShadowedException:
826
- Enabled: false
827
-
828
- Lint/ShadowingOuterLocalVariable:
829
- Enabled: false
830
-
831
- Lint/StructNewOverride:
832
- Enabled: false
833
-
834
- Lint/SuppressedException:
835
- Enabled: false
836
-
837
- # Disabling for now
838
- Lint/SymbolConversion:
839
- Enabled: false
840
-
841
- Lint/Syntax:
842
- Enabled: true
843
-
844
- Lint/ToEnumArguments:
845
- Enabled: false
846
-
847
- Lint/ToJSON:
848
- Enabled: false
849
-
850
- Lint/TopLevelReturnWithArgument:
851
- Enabled: true
852
-
853
- Lint/TrailingCommaInAttributeDeclaration:
854
- Enabled: true
855
-
856
- Lint/TripleQuotes:
857
- Enabled: true
858
-
859
- # Disabling for now
860
- Lint/UnderscorePrefixedVariableName:
861
- Enabled: false
862
-
863
- Lint/UnexpectedBlockArity:
864
- Enabled: false
865
-
866
- # Disabling for now
867
- Lint/UnifiedInteger:
868
- Enabled: false
869
-
870
- Lint/UnmodifiedReduceAccumulator:
871
- Enabled: false
872
-
873
- # Disabling for now
874
- Lint/UnreachableCode:
875
- Enabled: false
876
-
877
- Lint/UnreachableLoop:
878
- Enabled: false
879
-
880
- Lint/UnusedBlockArgument:
881
- Enabled: false
882
-
883
- Lint/UnusedMethodArgument:
884
- Enabled: false
885
-
886
- Lint/UriEscapeUnescape:
887
- Enabled: true
888
-
889
- Lint/UriRegexp:
890
- Enabled: true
891
-
892
- Lint/UselessAccessModifier:
893
- Enabled: false
894
-
895
- # Disabling for now
896
- Lint/UselessAssignment:
897
- Enabled: false
898
-
899
- Lint/UselessMethodDefinition:
900
- Enabled: false
901
-
902
- Lint/UselessSetterCall:
903
- Enabled: true
904
-
905
- # Disabling for now
906
- Lint/UselessTimes:
907
- Enabled: false
908
-
909
- # Disabling for now
910
- Lint/Void:
911
- Enabled: false
912
- # CheckForMethodsWithNoSideEffects: false
913
-
914
- Lint/IncompatibleIoSelectWithFiberScheduler:
915
- Enabled: false
916
-
917
- Lint/RequireRelativeSelfPath:
918
- Enabled: true
919
-
920
- Metrics/BlockLength:
921
- Enabled: false
922
-
923
- Metrics/BlockNesting:
924
- Enabled: false
925
-
926
- Metrics/ClassLength:
927
- Enabled: false
928
-
929
- Metrics/CyclomaticComplexity:
930
- Enabled: false
931
-
932
- Metrics/MethodLength:
933
- Enabled: false
934
-
935
- Metrics/ModuleLength:
936
- Enabled: false
937
-
938
- Metrics/ParameterLists:
939
- Enabled: false
940
-
941
- Metrics/PerceivedComplexity:
942
- Enabled: false
943
-
944
- Migration/DepartmentName:
945
- Enabled: true
946
-
947
- Naming/AccessorMethodName:
948
- Enabled: false
949
-
950
- Naming/AsciiIdentifiers:
951
- Enabled: false
952
-
953
- # Disabling for now
954
- Naming/BinaryOperatorParameterName:
955
- Enabled: false
956
-
957
- Naming/BlockParameterName:
958
- Enabled: true
959
- MinNameLength: 1
960
- AllowNamesEndingInNumbers: true
961
- AllowedNames: []
962
- ForbiddenNames: []
963
-
964
- Naming/ClassAndModuleCamelCase:
965
- Enabled: true
966
-
967
- Naming/ConstantName:
968
- Enabled: true
969
-
970
- Naming/FileName:
971
- Enabled: false
972
-
973
- Naming/HeredocDelimiterCase:
974
- Enabled: true
975
- EnforcedStyle: uppercase
976
-
977
- Naming/HeredocDelimiterNaming:
978
- Enabled: false
979
-
980
- Naming/InclusiveLanguage:
981
- Enabled: false
982
-
983
- Naming/MemoizedInstanceVariableName:
984
- Enabled: false
985
-
986
- Naming/MethodName:
987
- Enabled: false
988
-
989
- Naming/MethodParameterName:
990
- Enabled: false
991
-
992
- Naming/PredicateName:
993
- Enabled: false
994
-
995
- Naming/RescuedExceptionsVariableName:
996
- Enabled: false
997
-
998
- Naming/VariableName:
999
- Enabled: false
1000
- # EnforcedStyle: snake_case
1001
-
1002
- Naming/VariableNumber:
1003
- Enabled: false
1004
-
1005
- # TODO: OLD RUBIES - Requires 2.7
1006
- Performance/BindCall:
1007
- Enabled: false
1008
-
1009
- # TODO: OLD RUBIES - Requites 2.5
1010
- Performance/DeletePrefix:
1011
- Enabled: false
1012
-
1013
- # TODO: OLD RUBIES - Requires 2.7
1014
- Performance/MapCompact:
1015
- Enabled: false
1016
-
1017
- # TODO: Enable when time can be spent on it (no autocorrect)
1018
- Performance/MethodObjectAsBlock:
1019
- Enabled: false
1020
-
1021
- # Disabling for now
1022
- Security/Eval:
1023
- Enabled: false
1024
-
1025
- # Disabling for now
1026
- Security/JSONLoad:
1027
- Enabled: false
1028
- # AutoCorrect: false
1029
- # SafeAutoCorrect: false
1030
-
1031
- Security/MarshalLoad:
1032
- Enabled: false
1033
-
1034
- Security/Open:
1035
- Enabled: true
1036
- Safe: false
1037
-
1038
- # Disabling for now
1039
- Security/YAMLLoad:
1040
- Enabled: false
1041
- # SafeAutoCorrect: false
1042
-
1043
- Security/IoMethods:
1044
- Enabled: false
1045
- Safe: false
1046
-
1047
- # raised unrecognized cop or department
1048
- # Standard/BlockSingleLineBraces:
1049
- # Enabled: true
1050
-
1051
- Style/AccessModifierDeclarations:
1052
- Enabled: false
1053
-
1054
- Style/AccessorGrouping:
1055
- Enabled: false
1056
-
1057
- # Disabling for now
1058
- Style/Alias:
1059
- Enabled: false
1060
- # EnforcedStyle: prefer_alias_method
1061
-
1062
- # Disabling for now
1063
- Style/AndOr:
1064
- Enabled: false
1065
-
1066
- # Disabled for support of older ruby versions
1067
- Style/ArgumentsForwarding:
1068
- Enabled: false
1069
-
1070
- Style/ArrayCoercion:
1071
- Enabled: false
1072
-
1073
- Style/ArrayJoin:
1074
- Enabled: true
1075
-
1076
- Style/AsciiComments:
1077
- Enabled: false
1078
-
1079
- Style/Attr:
1080
- Enabled: true
1081
-
1082
- Style/AutoResourceCleanup:
1083
- Enabled: false
1084
-
1085
- # Disabling for now
1086
- Style/BarePercentLiterals:
1087
- Enabled: false
1088
- EnforcedStyle: bare_percent
1089
-
1090
- Style/BeginBlock:
1091
- Enabled: true
1092
-
1093
- Style/BisectedAttrAccessor:
1094
- Enabled: false
1095
-
1096
- Style/BlockComments:
1097
- Enabled: true
1098
-
1099
- Style/BlockDelimiters:
1100
- Enabled: false
1101
-
1102
- Style/CaseEquality:
1103
- Enabled: false
1104
-
1105
- Style/CaseLikeIf:
1106
- Enabled: false
1107
-
1108
- Style/CharacterLiteral:
1109
- Enabled: true
1110
-
1111
- Style/ClassAndModuleChildren:
1112
- Enabled: false
1113
-
1114
- # Disabling for now
1115
- Style/ClassCheck:
1116
- Enabled: false
1117
- # EnforcedStyle: is_a?
1118
-
1119
- # Disabling for now
1120
- Style/ClassEqualityComparison:
1121
- Enabled: false
1122
-
1123
- Style/ClassMethods:
1124
- Enabled: true
1125
-
1126
- Style/ClassMethodsDefinitions:
1127
- Enabled: false
1128
-
1129
- Style/ClassVars:
1130
- Enabled: false
1131
-
1132
- Style/CollectionCompact:
1133
- Enabled: false
1134
-
1135
- Style/CollectionMethods:
1136
- Enabled: false
1137
-
1138
- # Disabling for now
1139
- Style/ColonMethodCall:
1140
- Enabled: false
1141
-
1142
- Style/ColonMethodDefinition:
1143
- Enabled: true
1144
-
1145
- Style/CombinableLoops:
1146
- Enabled: false
1147
-
1148
- # Disabling for now
1149
- Style/CommandLiteral:
1150
- Enabled: false
1151
- # EnforcedStyle: mixed
1152
- # AllowInnerBackticks: false
1153
-
1154
- Style/CommentedKeyword:
1155
- Enabled: false
1156
-
1157
- # Disabling for now
1158
- Style/ConditionalAssignment:
1159
- Enabled: false
1160
- # EnforcedStyle: assign_to_condition
1161
- # SingleLineConditionsOnly: true
1162
- # IncludeTernaryExpressions: true
1163
-
1164
- Style/ConstantVisibility:
1165
- Enabled: false
1166
-
1167
- Style/Copyright:
1168
- Enabled: false
1169
-
1170
- Style/DateTime:
1171
- Enabled: false
1172
-
1173
- Style/DefWithParentheses:
1174
- Enabled: true
1175
-
1176
- # Disabling for now
1177
- Style/Dir:
1178
- Enabled: false
1179
-
1180
- Style/DisableCopsWithinSourceCodeDirective:
1181
- Enabled: false
1182
-
1183
- Style/DocumentDynamicEvalDefinition:
1184
- Enabled: false
1185
-
1186
- Style/Documentation:
1187
- Enabled: false
1188
-
1189
- Style/DocumentationMethod:
1190
- Enabled: false
1191
-
1192
- Style/DoubleCopDisableDirective:
1193
- Enabled: false
1194
-
1195
- Style/EachForSimpleLoop:
1196
- Enabled: true
1197
-
1198
- # Disabling for now
1199
- Style/EachWithObject:
1200
- Enabled: false
1201
-
1202
- Style/EmptyBlockParameter:
1203
- Enabled: true
1204
-
1205
- # Disabling for now
1206
- Style/EmptyCaseCondition:
1207
- Enabled: false
1208
-
1209
- Style/EmptyElse:
1210
- Enabled: true
1211
- EnforcedStyle: both
1212
-
1213
- # Disabling for now
1214
- Style/EmptyLambdaParameter:
1215
- Enabled: false
1216
-
1217
- # Disabling for now
1218
- Style/EmptyLiteral:
1219
- Enabled: false
1220
-
1221
- # Disabling for now
1222
- Style/EmptyMethod:
1223
- Enabled: false
1224
- # EnforcedStyle: expanded
1225
-
1226
- Style/EndBlock:
1227
- Enabled: true
1228
- AutoCorrect: true
1229
-
1230
- Style/EndlessMethod:
1231
- Enabled: false
1232
-
1233
- # The use of Dir.home should be preferred over ENV['HOME'], but as of
1234
- # JRuby 9.3.3.0 the use of ENV['HOME'] is required to deliver the desired
1235
- # functionality
1236
- Style/EnvHome:
1237
- Enabled: false
1238
-
1239
- # Disabling for now
1240
- Style/EvalWithLocation:
1241
- Enabled: false
1242
-
1243
- Style/EvenOdd:
1244
- Enabled: false
1245
-
1246
- Style/ExpandPathArguments:
1247
- Enabled: false
1248
-
1249
- Style/ExplicitBlockArgument:
1250
- Enabled: false
1251
-
1252
- Style/ExponentialNotation:
1253
- Enabled: false
1254
-
1255
- Style/FetchEnvVar:
1256
- Enabled: false
1257
-
1258
- Style/FloatDivision:
1259
- Enabled: false
1260
-
1261
- # Disabling for now
1262
- Style/For:
1263
- Enabled: false
1264
- # EnforcedStyle: each
1265
-
1266
- Style/FormatString:
1267
- Enabled: false
1268
-
1269
- Style/FormatStringToken:
1270
- Enabled: false
1271
-
1272
- # Disabling for now
1273
- Style/GlobalStdStream:
1274
- Enabled: false
1275
-
1276
- # Disabling for now
1277
- Style/GlobalVars:
1278
- Enabled: false
1279
- # AllowedVariables: []
1280
-
1281
- Style/GuardClause:
1282
- Enabled: false
1283
-
1284
- Style/HashAsLastArrayItem:
1285
- Enabled: false
1286
-
1287
- # Disabling for now
1288
- Style/HashConversion:
1289
- Enabled: false
1290
-
1291
- Style/HashEachMethods:
1292
- Enabled: false
1293
-
1294
- Style/HashExcept:
1295
- Enabled: true
1296
-
1297
- Style/HashLikeCase:
1298
- Enabled: false
1299
-
1300
- # Documentation: https://docs.rubocop.org/rubocop/cops_style.html#stylehashsyntax
1301
- # I believe we want either hash_rockets or no_mixed_keys
1302
- # Disabling for now
1303
- Style/HashSyntax:
1304
- Enabled: false
1305
- # EnforcedStyle: ruby19_no_mixed_keys
1306
-
1307
- Style/HashTransformKeys:
1308
- Enabled: false
1309
-
1310
- Style/HashTransformValues:
1311
- Enabled: false
1312
-
1313
- # Disabling for now
1314
- Style/IdenticalConditionalBranches:
1315
- Enabled: false
1316
-
1317
- # Disabling for now
1318
- Style/IfInsideElse:
1319
- Enabled: false
1320
-
1321
- Style/IfUnlessModifier:
1322
- Enabled: false
1323
-
1324
- Style/IfUnlessModifierOfIfUnless:
1325
- Enabled: true
1326
-
1327
- Style/IfWithBooleanLiteralBranches:
1328
- Enabled: true
1329
-
1330
- Style/IfWithSemicolon:
1331
- Enabled: true
1332
-
1333
- Style/ImplicitRuntimeError:
1334
- Enabled: false
1335
-
1336
- Style/InPatternThen:
1337
- Enabled: false
1338
-
1339
- # Disabling for now
1340
- Style/InfiniteLoop:
1341
- Enabled: false
1342
-
1343
- Style/InlineComment:
1344
- Enabled: false
1345
-
1346
- Style/InverseMethods:
1347
- Enabled: false
1348
-
1349
- Style/IpAddresses:
1350
- Enabled: false
1351
-
1352
- # Disabling for now
1353
- Style/KeywordParametersOrder:
1354
- Enabled: false
1355
-
1356
- Style/Lambda:
1357
- Enabled: false
1358
-
1359
- Style/LambdaCall:
1360
- Enabled: true
1361
- EnforcedStyle: call
1362
-
1363
- # Disabling for now
1364
- Style/LineEndConcatenation:
1365
- Enabled: false
1366
- # SafeAutoCorrect: false
1367
-
1368
- # TODO: OLD RUBIES - enable this cop after support for Ruby <= 2.5 has been
1369
- # dropped. NewRelic::Agent::InfiniteTracing::Transformer.hash_to_attributes
1370
- # currently does `values.map {}.to_h`. Newer Rubies should
1371
- # use `values.to_h {}` instead.
1372
- Style/MapToHash:
1373
- Enabled: false
1374
-
1375
- Style/MethodCallWithArgsParentheses:
1376
- Enabled: true
1377
- AllowedMethods:
1378
- - add_dependency
1379
- - add_development_dependency
1380
- - expect
1381
- - fail
1382
- - gem
1383
- - include
1384
- - print
1385
- - puts
1386
- - pp
1387
- - raise
1388
- - require
1389
- - skip
1390
- - source
1391
- - stub
1392
- - stub_const
1393
- - use
1394
- AllowedPatterns: [^assert, ^refute]
1395
-
1396
- Style/MethodCallWithoutArgsParentheses:
1397
- Enabled: false
1398
- AllowedMethods: []
1399
-
1400
- Style/MethodCalledOnDoEndBlock:
1401
- Enabled: false
1402
-
1403
- Style/MethodDefParentheses:
1404
- Enabled: true
1405
-
1406
- Style/MinMax:
1407
- Enabled: false
1408
-
1409
- Style/MissingElse:
1410
- Enabled: false
1411
-
1412
- # Disabling for now
1413
- Style/MissingRespondToMissing:
1414
- Enabled: false
1415
-
1416
- # Disabling for now
1417
- Style/MixinGrouping:
1418
- Enabled: false
1419
- # EnforcedStyle: separated
1420
-
1421
- # Disabling for now
1422
- Style/MixinUsage:
1423
- Enabled: false
1424
-
1425
- Style/ModuleFunction:
1426
- Enabled: false
1427
-
1428
- Style/MultilineBlockChain:
1429
- Enabled: false
1430
-
1431
- Style/MultilineIfModifier:
1432
- Enabled: true
1433
-
1434
- Style/MultilineIfThen:
1435
- Enabled: true
1436
-
1437
- Style/MultilineInPatternThen:
1438
- Enabled: false
1439
-
1440
- # Disabling for now
1441
- Style/MultilineMemoization:
1442
- Enabled: false
1443
- # EnforcedStyle: keyword
1444
-
1445
- Style/MultilineMethodSignature:
1446
- Enabled: false
1447
-
1448
- Style/MultilineWhenThen:
1449
- Enabled: true
1450
-
1451
- Style/MultipleComparison:
1452
- Enabled: false
1453
-
1454
- Style/MutableConstant:
1455
- Enabled: false
1456
-
1457
- Style/NegatedIf:
1458
- Enabled: false
1459
-
1460
- Style/NegatedIfElseCondition:
1461
- Enabled: false
1462
-
1463
- Style/NegatedUnless:
1464
- Enabled: false
1465
-
1466
- # Disabling for now
1467
- Style/NegatedWhile:
1468
- Enabled: false
1469
-
1470
- Style/NestedModifier:
1471
- Enabled: true
1472
-
1473
- # Disabling for now
1474
- Style/NestedParenthesizedCalls:
1475
- Enabled: false
1476
- # AllowedMethods:
1477
- # - be
1478
- # - be_a
1479
- # - be_an
1480
- # - be_between
1481
- # - be_falsey
1482
- # - be_kind_of
1483
- # - be_instance_of
1484
- # - be_truthy
1485
- # - be_within
1486
- # - eq
1487
- # - eql
1488
- # - end_with
1489
- # - include
1490
- # - match
1491
- # - raise_error
1492
- # - respond_to
1493
- # - start_with
1494
-
1495
- Style/NestedTernaryOperator:
1496
- Enabled: true
1497
-
1498
- Style/Next:
1499
- Enabled: false
1500
-
1501
- # Disabling for now
1502
- Style/NilLambda:
1503
- Enabled: false
1504
-
1505
- Style/Not:
1506
- Enabled: true
1507
-
1508
- # Disabling for now
1509
- Style/NumericLiteralPrefix:
1510
- Enabled: false
1511
- # EnforcedOctalStyle: zero_with_o
1512
-
1513
- Style/NumericLiterals:
1514
- Enabled: false
1515
-
1516
- Style/NumericPredicate:
1517
- Enabled: false
1518
-
1519
- Style/OneLineConditional:
1520
- Enabled: true
1521
-
1522
- # TODO: UNIT TESTS - tests relying on OpenStruct should be refactored to not
1523
- # do so, given that the use of OpenStruct instances can
1524
- # give a false sense of security with their extreme
1525
- # flexibility that may not match realistic code behavior.
1526
- Style/OpenStructUse:
1527
- Enabled: false
1528
-
1529
- Style/OptionHash:
1530
- Enabled: false
1531
-
1532
- Style/OptionalArguments:
1533
- Enabled: true
1534
-
1535
- Style/OptionalBooleanParameter:
1536
- Enabled: false
1537
-
1538
- Style/ParallelAssignment:
1539
- Enabled: false
1540
-
1541
- Style/ParenthesesAroundCondition:
1542
- Enabled: true
1543
- AllowSafeAssignment: true
1544
- AllowInMultilineConditions: false
1545
-
1546
- Style/PercentLiteralDelimiters:
1547
- Enabled: true
1548
- PreferredDelimiters:
1549
- default: ()
1550
- '%i': '[]'
1551
- '%I': '[]'
1552
- '%r': '{}'
1553
- '%w': '[]'
1554
- '%W': '[]'
1555
-
1556
- Style/PercentQLiterals:
1557
- Enabled: false
1558
-
1559
- Style/PerlBackrefs:
1560
- Enabled: false
1561
-
1562
- Style/PreferredHashMethods:
1563
- Enabled: false
1564
-
1565
- Style/QuotedSymbols:
1566
- Enabled: false
1567
-
1568
- Style/RaiseArgs:
1569
- Enabled: false
1570
-
1571
- Style/RandomWithOffset:
1572
- Enabled: true
1573
-
1574
- Style/RedundantArgument:
1575
- Enabled: false
1576
-
1577
- # Disabling for now
1578
- Style/RedundantAssignment:
1579
- Enabled: false
1580
-
1581
- # Disabling for now
1582
- Style/RedundantBegin:
1583
- Enabled: false
1584
-
1585
- Style/RedundantCapitalW:
1586
- Enabled: false
1587
-
1588
- Style/RedundantCondition:
1589
- Enabled: true
1590
-
1591
- Style/RedundantConditional:
1592
- Enabled: true
1593
-
1594
- Style/RedundantException:
1595
- Enabled: true
1596
-
1597
- Style/RedundantFetchBlock:
1598
- Enabled: true
1599
-
1600
- Style/RedundantFileExtensionInRequire:
1601
- Enabled: true
1602
-
1603
- # Disabling for now
1604
- Style/RedundantFreeze:
1605
- Enabled: false
1606
-
1607
- # Disabling for now
1608
- Style/RedundantInterpolation:
1609
- Enabled: false
1610
-
1611
- # Disabling for now
1612
- Style/RedundantParentheses:
1613
- Enabled: false
1614
-
1615
- # Disabling for now
1616
- Style/RedundantPercentQ:
1617
- Enabled: false
1618
-
1619
- Style/RedundantRegexpCharacterClass:
1620
- Enabled: true
1621
-
1622
- # Disabling for now
1623
- Style/RedundantRegexpEscape:
1624
- Enabled: false
1625
-
1626
- # Disabling for now
1627
- Style/RedundantReturn:
1628
- Enabled: false
1629
- # AllowMultipleReturnValues: false
1630
-
1631
- # Disabling for now
1632
- Style/RedundantSelf:
1633
- Enabled: false
1634
-
1635
- Style/RedundantSelfAssignment:
1636
- Enabled: false
1637
-
1638
- Style/RedundantSelfAssignmentBranch:
1639
- Enabled: false
1640
-
1641
- # Disabling for now
1642
- Style/RedundantSort:
1643
- Enabled: false
1644
-
1645
- Style/RedundantSortBy:
1646
- Enabled: true
1647
-
1648
- Style/RegexpLiteral:
1649
- Enabled: false
1650
-
1651
- # Disabling for now
1652
- Style/RescueModifier:
1653
- Enabled: false
1654
-
1655
- # Disabling for now
1656
- Style/RescueStandardError:
1657
- Enabled: false
1658
- # EnforcedStyle: implicit
1659
-
1660
- Style/ReturnNil:
1661
- Enabled: false
1662
-
1663
- Style/Sample:
1664
- Enabled: true
1665
-
1666
- Style/SelfAssignment:
1667
- Enabled: true
1668
-
1669
- # Disabling for now
1670
- Style/Semicolon:
1671
- Enabled: false
1672
- # AllowAsExpressionSeparator: false
1673
-
1674
- Style/Send:
1675
- Enabled: false
1676
-
1677
- Style/SignalException:
1678
- Enabled: false
1679
-
1680
- Style/SingleArgumentDig:
1681
- Enabled: false
1682
-
1683
- Style/SingleLineBlockParams:
1684
- Enabled: false
1685
-
1686
- # Disabling for now
1687
- Style/SingleLineMethods:
1688
- Enabled: false
1689
- # AllowIfMethodIsEmpty: false
1690
-
1691
- # Disabled for support of older ruby versions
1692
- Style/SlicingWithRange:
1693
- Enabled: false
1694
-
1695
- Style/SoleNestedConditional:
1696
- Enabled: false
1697
-
1698
- Style/SpecialGlobalVars:
1699
- Enabled: false
1700
-
1701
- Style/StabbyLambdaParentheses:
1702
- Enabled: true
1703
- EnforcedStyle: require_parentheses
1704
-
1705
- Style/StaticClass:
1706
- Enabled: false
1707
-
1708
- # Do we want this one? Use warn instead of STDERR.puts
1709
- Style/StderrPuts:
1710
- Enabled: false
1711
-
1712
- Style/StringChars:
1713
- Enabled: true
1714
-
1715
- Style/StringConcatenation:
1716
- Enabled: false
1717
-
1718
- Style/StringHashKeys:
1719
- Enabled: false
1720
-
1721
- Style/StringMethods:
1722
- Enabled: false
1723
-
1724
- Style/Strip:
1725
- Enabled: true
1726
-
1727
- Style/StructInheritance:
1728
- Enabled: false
1729
-
1730
- Style/SwapValues:
1731
- Enabled: false
1732
-
1733
- Style/SymbolArray:
1734
- Enabled: false
1735
-
1736
- # Disabling for now
1737
- Style/SymbolLiteral:
1738
- Enabled: false
1739
-
1740
- Style/SymbolProc:
1741
- Enabled: false
1742
-
1743
- Style/TernaryParentheses:
1744
- Enabled: true
1745
- EnforcedStyle: require_no_parentheses
1746
- AllowSafeAssignment: true
1747
-
1748
- Style/TopLevelMethodDefinition:
1749
- Enabled: false
1750
-
1751
- Style/TrailingBodyOnClass:
1752
- Enabled: true
1753
-
1754
- Style/TrailingBodyOnMethodDefinition:
1755
- Enabled: true
1756
-
1757
- Style/TrailingBodyOnModule:
1758
- Enabled: true
1759
-
1760
- Style/TrailingCommaInArguments:
1761
- Enabled: true
1762
- EnforcedStyleForMultiline: no_comma
1763
-
1764
- Style/TrailingCommaInArrayLiteral:
1765
- Enabled: true
1766
- EnforcedStyleForMultiline: no_comma
1767
-
1768
- Style/TrailingCommaInBlockArgs:
1769
- Enabled: true
1770
-
1771
- Style/TrailingCommaInHashLiteral:
1772
- Enabled: true
1773
- EnforcedStyleForMultiline: no_comma
1774
-
1775
- Style/TrailingMethodEndStatement:
1776
- Enabled: true
1777
-
1778
- Style/TrailingUnderscoreVariable:
1779
- Enabled: false
1780
-
1781
- # Do we want? Performance test first
1782
- Style/TrivialAccessors:
1783
- Enabled: false
1784
- # ExactNameMatch: true
1785
- # AllowPredicates: true
1786
- # AllowDSLWriters: false
1787
- # IgnoreClassMethods: false
1788
- # AllowedMethods:
1789
- # - to_ary
1790
- # - to_a
1791
- # - to_c
1792
- # - to_enum
1793
- # - to_h
1794
- # - to_hash
1795
- # - to_i
1796
- # - to_int
1797
- # - to_io
1798
- # - to_open
1799
- # - to_path
1800
- # - to_proc
1801
- # - to_r
1802
- # - to_regexp
1803
- # - to_str
1804
- # - to_s
1805
- # - to_sym
1806
-
1807
- Style/UnlessElse:
1808
- Enabled: true
1809
-
1810
- Style/UnlessLogicalOperators:
1811
- Enabled: false
1812
-
1813
- # Disabling for now
1814
- Style/UnpackFirst:
1815
- Enabled: false
1816
-
1817
- # Disabling for now
1818
- Style/VariableInterpolation:
1819
- Enabled: false
1820
-
1821
- Style/WhenThen:
1822
- Enabled: true
1823
-
1824
- Style/WhileUntilDo:
1825
- Enabled: true
1826
-
1827
- Style/WhileUntilModifier:
1828
- Enabled: false
1829
-
1830
- # Disabling for now
1831
- Style/YodaCondition:
1832
- Enabled: false
1833
- # EnforcedStyle: forbid_for_all_comparison_operators
1834
-
1835
- Style/ZeroLengthPredicate:
1836
- Enabled: false
1837
-
1838
- Style/NumberedParameters:
1839
- Enabled: false
1840
-
1841
- Style/NumberedParametersLimit:
1842
- Enabled: false
1843
-
1844
- Style/SelectByRegexp:
1845
- Enabled: false