rubocop-picket 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2064 @@
1
+ inherit_from:
2
+ - ./default_pending.yml
3
+
4
+ inherit_mode:
5
+ merge:
6
+ - Exclude
7
+
8
+ require:
9
+ - rubocop-picket
10
+ - rubocop-faker
11
+ - rubocop-md
12
+ - rubocop-minitest
13
+ - rubocop-packaging
14
+ - rubocop-performance
15
+ - rubocop-rake
16
+
17
+ AllCops:
18
+ Exclude:
19
+ - "bin/*"
20
+ - "data/*"
21
+ - "log/**/*"
22
+
23
+ Bundler/DuplicatedGem:
24
+ Enabled: true
25
+
26
+ Bundler/DuplicatedGroup:
27
+ Enabled: true
28
+
29
+ Bundler/GemComment:
30
+ Enabled: false
31
+
32
+ Bundler/GemFilename:
33
+ Enabled: true
34
+
35
+ Bundler/GemVersion:
36
+ Enabled: false
37
+
38
+ Bundler/InsecureProtocolSource:
39
+ Enabled: true
40
+
41
+ Bundler/OrderedGems:
42
+ Enabled: true
43
+
44
+ Gemspec/AddRuntimeDependency:
45
+ Enabled: true
46
+
47
+ Gemspec/DependencyVersion:
48
+ Enabled: false
49
+
50
+ Gemspec/DeprecatedAttributeAssignment:
51
+ Enabled: true
52
+
53
+ Gemspec/DevelopmentDependencies:
54
+ Enabled: true
55
+
56
+ Gemspec/DuplicatedAssignment:
57
+ Enabled: true
58
+
59
+ Gemspec/OrderedDependencies:
60
+ Enabled: true
61
+
62
+ Gemspec/RequireMFA:
63
+ Enabled: true
64
+
65
+ Gemspec/RequiredRubyVersion:
66
+ Enabled: true
67
+
68
+ Gemspec/RubyVersionGlobalsUsage:
69
+ Enabled: true
70
+
71
+ Layout/AccessModifierIndentation:
72
+ Enabled: true
73
+
74
+ Layout/ArgumentAlignment:
75
+ Enabled: true
76
+
77
+ Layout/ArrayAlignment:
78
+ Enabled: true
79
+
80
+ Layout/AssignmentIndentation:
81
+ Enabled: true
82
+
83
+ Layout/BeginEndAlignment:
84
+ Enabled: true
85
+
86
+ Layout/BlockAlignment:
87
+ Enabled: true
88
+
89
+ Layout/BlockEndNewline:
90
+ Enabled: true
91
+
92
+ Layout/CaseIndentation:
93
+ Enabled: true
94
+
95
+ Layout/ClassStructure:
96
+ Enabled: false
97
+
98
+ Layout/ClosingHeredocIndentation:
99
+ Enabled: true
100
+
101
+ Layout/ClosingParenthesisIndentation:
102
+ Enabled: true
103
+
104
+ Layout/CommentIndentation:
105
+ Enabled: true
106
+
107
+ Layout/ConditionPosition:
108
+ Enabled: true
109
+
110
+ Layout/DefEndAlignment:
111
+ Enabled: true
112
+
113
+ Layout/DotPosition:
114
+ Enabled: true
115
+
116
+ Layout/ElseAlignment:
117
+ Enabled: true
118
+
119
+ Layout/EmptyComment:
120
+ Enabled: true
121
+
122
+ Layout/EmptyLineAfterGuardClause:
123
+ Enabled: true
124
+
125
+ Layout/EmptyLineAfterMagicComment:
126
+ Enabled: true
127
+
128
+ Layout/EmptyLineAfterMultilineCondition:
129
+ Enabled: false
130
+
131
+ Layout/EmptyLineBetweenDefs:
132
+ Enabled: true
133
+
134
+ Layout/EmptyLines:
135
+ Enabled: true
136
+
137
+ Layout/EmptyLinesAroundAccessModifier:
138
+ Enabled: true
139
+
140
+ Layout/EmptyLinesAroundArguments:
141
+ Enabled: true
142
+
143
+ Layout/EmptyLinesAroundAttributeAccessor:
144
+ Enabled: true
145
+
146
+ Layout/EmptyLinesAroundBeginBody:
147
+ Enabled: true
148
+
149
+ Layout/EmptyLinesAroundBlockBody:
150
+ Enabled: true
151
+
152
+ Layout/EmptyLinesAroundClassBody:
153
+ Enabled: true
154
+
155
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
156
+ Enabled: true
157
+
158
+ Layout/EmptyLinesAroundMethodBody:
159
+ Enabled: true
160
+
161
+ Layout/EmptyLinesAroundModuleBody:
162
+ Enabled: true
163
+
164
+ Layout/EndAlignment:
165
+ Enabled: true
166
+
167
+ Layout/EndOfLine:
168
+ Enabled: true
169
+
170
+ Layout/ExtraSpacing:
171
+ Enabled: true
172
+
173
+ Layout/FirstArgumentIndentation:
174
+ Enabled: true
175
+
176
+ Layout/FirstArrayElementIndentation:
177
+ Enabled: true
178
+
179
+ Layout/FirstArrayElementLineBreak:
180
+ Enabled: false
181
+
182
+ Layout/FirstHashElementIndentation:
183
+ Enabled: true
184
+
185
+ Layout/FirstHashElementLineBreak:
186
+ Enabled: false
187
+
188
+ Layout/FirstMethodArgumentLineBreak:
189
+ Enabled: false
190
+
191
+ Layout/FirstMethodParameterLineBreak:
192
+ Enabled: false
193
+
194
+ Layout/FirstParameterIndentation:
195
+ Enabled: true
196
+
197
+ Layout/HashAlignment:
198
+ Enabled: true
199
+
200
+ Layout/HeredocArgumentClosingParenthesis:
201
+ Enabled: false
202
+
203
+ Layout/HeredocIndentation:
204
+ Enabled: true
205
+
206
+ Layout/IndentationConsistency:
207
+ Enabled: true
208
+
209
+ Layout/IndentationStyle:
210
+ Enabled: true
211
+
212
+ Layout/IndentationWidth:
213
+ Enabled: true
214
+
215
+ Layout/InitialIndentation:
216
+ Enabled: true
217
+
218
+ Layout/LeadingCommentSpace:
219
+ Enabled: true
220
+
221
+ Layout/LeadingEmptyLines:
222
+ Enabled: true
223
+
224
+ Layout/LineContinuationLeadingSpace:
225
+ Enabled: true
226
+
227
+ Layout/LineContinuationSpacing:
228
+ Enabled: true
229
+
230
+ Layout/LineEndStringConcatenationIndentation:
231
+ Enabled: true
232
+
233
+ Layout/LineLength:
234
+ Enabled: true
235
+
236
+ Layout/MultilineArrayBraceLayout:
237
+ Enabled: true
238
+
239
+ Layout/MultilineArrayLineBreaks:
240
+ Enabled: false
241
+
242
+ Layout/MultilineAssignmentLayout:
243
+ Enabled: false
244
+
245
+ Layout/MultilineBlockLayout:
246
+ Enabled: true
247
+
248
+ Layout/MultilineHashBraceLayout:
249
+ Enabled: true
250
+
251
+ Layout/MultilineHashKeyLineBreaks:
252
+ Enabled: false
253
+
254
+ Layout/MultilineMethodArgumentLineBreaks:
255
+ Enabled: false
256
+
257
+ Layout/MultilineMethodCallBraceLayout:
258
+ Enabled: true
259
+
260
+ Layout/MultilineMethodCallIndentation:
261
+ Enabled: true
262
+
263
+ Layout/MultilineMethodDefinitionBraceLayout:
264
+ Enabled: true
265
+
266
+ Layout/MultilineMethodParameterLineBreaks:
267
+ Enabled: false
268
+
269
+ Layout/MultilineOperationIndentation:
270
+ Enabled: true
271
+
272
+ Layout/ParameterAlignment:
273
+ Enabled: true
274
+
275
+ Layout/RedundantLineBreak:
276
+ Enabled: false
277
+
278
+ Layout/RescueEnsureAlignment:
279
+ Enabled: true
280
+
281
+ Layout/SingleLineBlockChain:
282
+ Enabled: false
283
+
284
+ Layout/SpaceAfterColon:
285
+ Enabled: true
286
+
287
+ Layout/SpaceAfterComma:
288
+ Enabled: true
289
+
290
+ Layout/SpaceAfterMethodName:
291
+ Enabled: true
292
+
293
+ Layout/SpaceAfterNot:
294
+ Enabled: true
295
+
296
+ Layout/SpaceAfterSemicolon:
297
+ Enabled: true
298
+
299
+ Layout/SpaceAroundBlockParameters:
300
+ Enabled: true
301
+
302
+ Layout/SpaceAroundEqualsInParameterDefault:
303
+ Enabled: true
304
+
305
+ Layout/SpaceAroundKeyword:
306
+ Enabled: true
307
+
308
+ Layout/SpaceAroundMethodCallOperator:
309
+ Enabled: true
310
+
311
+ Layout/SpaceAroundOperators:
312
+ Enabled: true
313
+
314
+ Layout/SpaceBeforeBlockBraces:
315
+ Enabled: true
316
+
317
+ Layout/SpaceBeforeBrackets:
318
+ Enabled: true
319
+
320
+ Layout/SpaceBeforeComma:
321
+ Enabled: true
322
+
323
+ Layout/SpaceBeforeComment:
324
+ Enabled: true
325
+
326
+ Layout/SpaceBeforeFirstArg:
327
+ Enabled: true
328
+
329
+ Layout/SpaceBeforeSemicolon:
330
+ Enabled: true
331
+
332
+ Layout/SpaceInLambdaLiteral:
333
+ Enabled: true
334
+
335
+ Layout/SpaceInsideArrayLiteralBrackets:
336
+ Enabled: true
337
+
338
+ Layout/SpaceInsideArrayPercentLiteral:
339
+ Enabled: true
340
+
341
+ Layout/SpaceInsideBlockBraces:
342
+ Enabled: true
343
+
344
+ Layout/SpaceInsideHashLiteralBraces:
345
+ Enabled: true
346
+
347
+ Layout/SpaceInsideParens:
348
+ Enabled: true
349
+
350
+ Layout/SpaceInsidePercentLiteralDelimiters:
351
+ Enabled: true
352
+
353
+ Layout/SpaceInsideRangeLiteral:
354
+ Enabled: true
355
+
356
+ Layout/SpaceInsideReferenceBrackets:
357
+ Enabled: true
358
+
359
+ Layout/SpaceInsideStringInterpolation:
360
+ Enabled: true
361
+
362
+ Layout/TrailingEmptyLines:
363
+ Enabled: true
364
+
365
+ Layout/TrailingWhitespace:
366
+ Enabled: true
367
+
368
+ Lint/AmbiguousAssignment:
369
+ Enabled: true
370
+
371
+ Lint/AmbiguousBlockAssociation:
372
+ Enabled: true
373
+
374
+ Lint/AmbiguousOperator:
375
+ Enabled: true
376
+
377
+ Lint/AmbiguousOperatorPrecedence:
378
+ Enabled: true
379
+
380
+ Lint/AmbiguousRange:
381
+ Enabled: true
382
+
383
+ Lint/AmbiguousRegexpLiteral:
384
+ Enabled: true
385
+
386
+ Lint/AssignmentInCondition:
387
+ Enabled: true
388
+
389
+ Lint/BigDecimalNew:
390
+ Enabled: true
391
+
392
+ Lint/BinaryOperatorWithIdenticalOperands:
393
+ Enabled: true
394
+
395
+ Lint/BooleanSymbol:
396
+ Enabled: true
397
+
398
+ Lint/CircularArgumentReference:
399
+ Enabled: true
400
+
401
+ Lint/ConstantDefinitionInBlock:
402
+ Enabled: true
403
+
404
+ Lint/ConstantOverwrittenInRescue:
405
+ Enabled: true
406
+
407
+ Lint/ConstantResolution:
408
+ Enabled: false
409
+
410
+ Lint/Debugger:
411
+ Enabled: true
412
+
413
+ Lint/DeprecatedClassMethods:
414
+ Enabled: true
415
+
416
+ Lint/DeprecatedConstants:
417
+ Enabled: true
418
+
419
+ Lint/DeprecatedOpenSSLConstant:
420
+ Enabled: true
421
+
422
+ Lint/DisjunctiveAssignmentInConstructor:
423
+ Enabled: true
424
+
425
+ Lint/DuplicateBranch:
426
+ Enabled: true
427
+
428
+ Lint/DuplicateCaseCondition:
429
+ Enabled: true
430
+
431
+ Lint/DuplicateElsifCondition:
432
+ Enabled: true
433
+
434
+ Lint/DuplicateHashKey:
435
+ Enabled: true
436
+
437
+ Lint/DuplicateMagicComment:
438
+ Enabled: true
439
+
440
+ Lint/DuplicateMatchPattern:
441
+ Enabled: true
442
+
443
+ Lint/DuplicateMethods:
444
+ Enabled: true
445
+
446
+ Lint/DuplicateRegexpCharacterClassElement:
447
+ Enabled: true
448
+
449
+ Lint/DuplicateRequire:
450
+ Enabled: true
451
+
452
+ Lint/DuplicateRescueException:
453
+ Enabled: true
454
+
455
+ Lint/DuplicateSetElement:
456
+ Enabled: true
457
+
458
+ Lint/EachWithObjectArgument:
459
+ Enabled: true
460
+
461
+ Lint/ElseLayout:
462
+ Enabled: true
463
+
464
+ Lint/EmptyBlock:
465
+ Enabled: true
466
+
467
+ Lint/EmptyClass:
468
+ Enabled: true
469
+
470
+ Lint/EmptyConditionalBody:
471
+ Enabled: true
472
+
473
+ Lint/EmptyEnsure:
474
+ Enabled: true
475
+
476
+ Lint/EmptyExpression:
477
+ Enabled: true
478
+
479
+ Lint/EmptyFile:
480
+ Enabled: true
481
+
482
+ Lint/EmptyInPattern:
483
+ Enabled: true
484
+
485
+ Lint/EmptyInterpolation:
486
+ Enabled: true
487
+
488
+ Lint/EmptyWhen:
489
+ Enabled: true
490
+
491
+ Lint/EnsureReturn:
492
+ Enabled: true
493
+
494
+ Lint/ErbNewArguments:
495
+ Enabled: true
496
+
497
+ Lint/FlipFlop:
498
+ Enabled: true
499
+
500
+ Lint/FloatComparison:
501
+ Enabled: true
502
+
503
+ Lint/FloatOutOfRange:
504
+ Enabled: true
505
+
506
+ Lint/FormatParameterMismatch:
507
+ Enabled: true
508
+
509
+ Lint/HashCompareByIdentity:
510
+ Enabled: true
511
+
512
+ Lint/HeredocMethodCallPosition:
513
+ Enabled: false
514
+
515
+ Lint/IdentityComparison:
516
+ Enabled: true
517
+
518
+ Lint/ImplicitStringConcatenation:
519
+ Enabled: true
520
+
521
+ Lint/IncompatibleIoSelectWithFiberScheduler:
522
+ Enabled: true
523
+
524
+ Lint/IneffectiveAccessModifier:
525
+ Enabled: true
526
+
527
+ Lint/InheritException:
528
+ Enabled: true
529
+
530
+ Lint/InterpolationCheck:
531
+ Enabled: true
532
+
533
+ Lint/ItWithoutArgumentsInBlock:
534
+ Enabled: true
535
+
536
+ Lint/LambdaWithoutLiteralBlock:
537
+ Enabled: true
538
+
539
+ Lint/LiteralAsCondition:
540
+ Enabled: true
541
+
542
+ Lint/LiteralAssignmentInCondition:
543
+ Enabled: true
544
+
545
+ Lint/LiteralInInterpolation:
546
+ Enabled: true
547
+
548
+ Lint/Loop:
549
+ Enabled: true
550
+
551
+ Lint/MissingCopEnableDirective:
552
+ Enabled: true
553
+
554
+ Lint/MissingSuper:
555
+ Enabled: true
556
+
557
+ Lint/MixedCaseRange:
558
+ Enabled: true
559
+
560
+ Lint/MixedRegexpCaptureTypes:
561
+ Enabled: true
562
+
563
+ Lint/MultipleComparison:
564
+ Enabled: true
565
+
566
+ Lint/NestedMethodDefinition:
567
+ Enabled: true
568
+
569
+ Lint/NestedPercentLiteral:
570
+ Enabled: true
571
+
572
+ Lint/NextWithoutAccumulator:
573
+ Enabled: true
574
+
575
+ Lint/NoReturnInBeginEndBlocks:
576
+ Enabled: true
577
+
578
+ Lint/NonAtomicFileOperation:
579
+ Enabled: true
580
+
581
+ Lint/NonDeterministicRequireOrder:
582
+ Enabled: true
583
+
584
+ Lint/NonLocalExitFromIterator:
585
+ Enabled: true
586
+
587
+ Lint/NumberConversion:
588
+ Enabled: false
589
+
590
+ Lint/NumberedParameterAssignment:
591
+ Enabled: true
592
+
593
+ Lint/OrAssignmentToConstant:
594
+ Enabled: true
595
+
596
+ Lint/OrderedMagicComments:
597
+ Enabled: true
598
+
599
+ Lint/OutOfRangeRegexpRef:
600
+ Enabled: true
601
+
602
+ Lint/ParenthesesAsGroupedExpression:
603
+ Enabled: true
604
+
605
+ Lint/PercentStringArray:
606
+ Enabled: true
607
+
608
+ Lint/PercentSymbolArray:
609
+ Enabled: true
610
+
611
+ Lint/RaiseException:
612
+ Enabled: true
613
+
614
+ Lint/RandOne:
615
+ Enabled: true
616
+
617
+ Lint/RedundantCopDisableDirective:
618
+ Enabled: true
619
+
620
+ Lint/RedundantCopEnableDirective:
621
+ Enabled: true
622
+
623
+ Lint/RedundantDirGlobSort:
624
+ Enabled: true
625
+
626
+ Lint/RedundantRegexpQuantifiers:
627
+ Enabled: true
628
+
629
+ Lint/RedundantRequireStatement:
630
+ Enabled: true
631
+
632
+ Lint/RedundantSafeNavigation:
633
+ Enabled: true
634
+
635
+ Lint/RedundantSplatExpansion:
636
+ Enabled: true
637
+
638
+ Lint/RedundantStringCoercion:
639
+ Enabled: true
640
+
641
+ Lint/RedundantWithIndex:
642
+ Enabled: true
643
+
644
+ Lint/RedundantWithObject:
645
+ Enabled: true
646
+
647
+ Lint/RefinementImportMethods:
648
+ Enabled: true
649
+
650
+ Lint/RegexpAsCondition:
651
+ Enabled: true
652
+
653
+ Lint/RequireParentheses:
654
+ Enabled: true
655
+
656
+ Lint/RequireRangeParentheses:
657
+ Enabled: true
658
+
659
+ Lint/RequireRelativeSelfPath:
660
+ Enabled: true
661
+
662
+ Lint/RescueException:
663
+ Enabled: true
664
+
665
+ Lint/RescueType:
666
+ Enabled: true
667
+
668
+ Lint/ReturnInVoidContext:
669
+ Enabled: true
670
+
671
+ Lint/SafeNavigationChain:
672
+ Enabled: true
673
+
674
+ Lint/SafeNavigationConsistency:
675
+ Enabled: true
676
+
677
+ Lint/SafeNavigationWithEmpty:
678
+ Enabled: true
679
+
680
+ Lint/ScriptPermission:
681
+ Enabled: true
682
+
683
+ Lint/SelfAssignment:
684
+ Enabled: true
685
+
686
+ Lint/SendWithMixinArgument:
687
+ Enabled: true
688
+
689
+ Lint/ShadowedArgument:
690
+ Enabled: true
691
+
692
+ Lint/ShadowedException:
693
+ Enabled: true
694
+
695
+ Lint/ShadowingOuterLocalVariable:
696
+ Enabled: true
697
+
698
+ Lint/StructNewOverride:
699
+ Enabled: true
700
+
701
+ Lint/SuppressedException:
702
+ Enabled: true
703
+
704
+ Lint/SymbolConversion:
705
+ Enabled: true
706
+
707
+ Lint/Syntax:
708
+ Enabled: true
709
+
710
+ Lint/ToEnumArguments:
711
+ Enabled: true
712
+
713
+ Lint/ToJSON:
714
+ Enabled: true
715
+
716
+ Lint/TopLevelReturnWithArgument:
717
+ Enabled: true
718
+
719
+ Lint/TrailingCommaInAttributeDeclaration:
720
+ Enabled: true
721
+
722
+ Lint/TripleQuotes:
723
+ Enabled: true
724
+
725
+ Lint/UnderscorePrefixedVariableName:
726
+ Enabled: true
727
+
728
+ Lint/UnescapedBracketInRegexp:
729
+ Enabled: true
730
+
731
+ Lint/UnexpectedBlockArity:
732
+ Enabled: true
733
+
734
+ Lint/UnifiedInteger:
735
+ Enabled: true
736
+
737
+ Lint/UnmodifiedReduceAccumulator:
738
+ Enabled: true
739
+
740
+ Lint/UnreachableCode:
741
+ Enabled: true
742
+
743
+ Lint/UnreachableLoop:
744
+ Enabled: true
745
+
746
+ Lint/UnusedBlockArgument:
747
+ Enabled: true
748
+
749
+ Lint/UnusedMethodArgument:
750
+ Enabled: true
751
+
752
+ Lint/UriEscapeUnescape:
753
+ Enabled: true
754
+
755
+ Lint/UriRegexp:
756
+ Enabled: true
757
+
758
+ Lint/UselessAccessModifier:
759
+ Enabled: true
760
+
761
+ Lint/UselessAssignment:
762
+ Enabled: true
763
+
764
+ Lint/UselessElseWithoutRescue:
765
+ Enabled: true
766
+
767
+ Lint/UselessMethodDefinition:
768
+ Enabled: true
769
+
770
+ Lint/UselessNumericOperation:
771
+ Enabled: true
772
+
773
+ Lint/UselessRescue:
774
+ Enabled: true
775
+
776
+ Lint/UselessRuby2Keywords:
777
+ Enabled: true
778
+
779
+ Lint/UselessSetterCall:
780
+ Enabled: true
781
+
782
+ Lint/UselessTimes:
783
+ Enabled: true
784
+
785
+ Lint/Void:
786
+ Enabled: true
787
+
788
+ Metrics/AbcSize:
789
+ Enabled: true
790
+
791
+ Metrics/BlockLength:
792
+ Enabled: true
793
+
794
+ Metrics/BlockNesting:
795
+ Enabled: true
796
+
797
+ Metrics/ClassLength:
798
+ Enabled: true
799
+
800
+ Metrics/CollectionLiteralLength:
801
+ Enabled: true
802
+
803
+ Metrics/CyclomaticComplexity:
804
+ Enabled: true
805
+
806
+ Metrics/MethodLength:
807
+ Enabled: true
808
+
809
+ Metrics/ModuleLength:
810
+ Enabled: true
811
+
812
+ Metrics/ParameterLists:
813
+ Enabled: true
814
+
815
+ Metrics/PerceivedComplexity:
816
+ Enabled: true
817
+
818
+ Migration/DepartmentName:
819
+ Enabled: true
820
+
821
+ Naming/AccessorMethodName:
822
+ Enabled: true
823
+
824
+ Naming/AsciiIdentifiers:
825
+ Enabled: true
826
+
827
+ Naming/BinaryOperatorParameterName:
828
+ Enabled: true
829
+
830
+ Naming/BlockForwarding:
831
+ Enabled: true
832
+
833
+ Naming/BlockParameterName:
834
+ Enabled: true
835
+
836
+ Naming/ClassAndModuleCamelCase:
837
+ Enabled: true
838
+
839
+ Naming/ConstantName:
840
+ Enabled: true
841
+
842
+ Naming/FileName:
843
+ Enabled: true
844
+ Exclude:
845
+ - ARCHITECTURE.md
846
+ - CHANGELOG.md
847
+ - CODE_OF_CONDUCT.md
848
+ - CONTRIBUTING.md
849
+ - DEPLOYING.md
850
+ - README.md
851
+ - RELEASING.md
852
+ - ROADMAP.md
853
+ - SECURITY.md
854
+ - STYLE_GUIDE.md
855
+ - VISION.md
856
+
857
+ Naming/HeredocDelimiterCase:
858
+ Enabled: true
859
+
860
+ Naming/HeredocDelimiterNaming:
861
+ Enabled: true
862
+
863
+ Naming/InclusiveLanguage:
864
+ Enabled: false
865
+
866
+ Naming/MemoizedInstanceVariableName:
867
+ Enabled: true
868
+
869
+ Naming/MethodName:
870
+ Enabled: true
871
+
872
+ Naming/MethodParameterName:
873
+ Enabled: true
874
+
875
+ Naming/PredicateName:
876
+ Enabled: true
877
+
878
+ Naming/RescuedExceptionsVariableName:
879
+ Enabled: true
880
+
881
+ Naming/VariableName:
882
+ Enabled: true
883
+
884
+ Naming/VariableNumber:
885
+ Enabled: true
886
+
887
+ Security/CompoundHash:
888
+ Enabled: true
889
+
890
+ Security/Eval:
891
+ Enabled: true
892
+
893
+ Security/IoMethods:
894
+ Enabled: true
895
+
896
+ Security/JSONLoad:
897
+ Enabled: true
898
+
899
+ Security/MarshalLoad:
900
+ Enabled: true
901
+
902
+ Security/Open:
903
+ Enabled: true
904
+
905
+ Security/YAMLLoad:
906
+ Enabled: true
907
+
908
+ Style/AccessModifierDeclarations:
909
+ Enabled: true
910
+
911
+ Style/AccessorGrouping:
912
+ Enabled: true
913
+
914
+ Style/Alias:
915
+ Enabled: true
916
+
917
+ Style/AmbiguousEndlessMethodDefinition:
918
+ Enabled: true
919
+
920
+ Style/AndOr:
921
+ Enabled: true
922
+
923
+ Style/ArgumentsForwarding:
924
+ Enabled: true
925
+
926
+ Style/ArrayCoercion:
927
+ Enabled: false
928
+
929
+ Style/ArrayFirstLast:
930
+ Enabled: false
931
+
932
+ Style/ArrayIntersect:
933
+ Enabled: true
934
+
935
+ Style/ArrayJoin:
936
+ Enabled: true
937
+
938
+ Style/AsciiComments:
939
+ Enabled: false
940
+
941
+ Style/Attr:
942
+ Enabled: true
943
+
944
+ Style/AutoResourceCleanup:
945
+ Enabled: false
946
+
947
+ Style/BarePercentLiterals:
948
+ Enabled: true
949
+
950
+ Style/BeginBlock:
951
+ Enabled: true
952
+
953
+ Style/BisectedAttrAccessor:
954
+ Enabled: true
955
+
956
+ Style/BitwisePredicate:
957
+ Enabled: true
958
+
959
+ Style/BlockComments:
960
+ Enabled: true
961
+
962
+ Style/BlockDelimiters:
963
+ Enabled: true
964
+
965
+ Style/CaseEquality:
966
+ Enabled: true
967
+
968
+ Style/CaseLikeIf:
969
+ Enabled: true
970
+
971
+ Style/CharacterLiteral:
972
+ Enabled: true
973
+
974
+ Style/ClassAndModuleChildren:
975
+ Enabled: true
976
+
977
+ Style/ClassCheck:
978
+ Enabled: true
979
+
980
+ Style/ClassEqualityComparison:
981
+ Enabled: true
982
+
983
+ Style/ClassMethods:
984
+ Enabled: true
985
+
986
+ Style/ClassMethodsDefinitions:
987
+ Enabled: false
988
+
989
+ Style/ClassVars:
990
+ Enabled: true
991
+
992
+ Style/CollectionCompact:
993
+ Enabled: true
994
+
995
+ Style/CollectionMethods:
996
+ Enabled: false
997
+
998
+ Style/ColonMethodCall:
999
+ Enabled: true
1000
+
1001
+ Style/ColonMethodDefinition:
1002
+ Enabled: true
1003
+
1004
+ Style/CombinableDefined:
1005
+ Enabled: true
1006
+
1007
+ Style/CombinableLoops:
1008
+ Enabled: true
1009
+
1010
+ Style/CommandLiteral:
1011
+ Enabled: true
1012
+
1013
+ Style/CommentAnnotation:
1014
+ Enabled: true
1015
+
1016
+ Style/CommentedKeyword:
1017
+ Enabled: true
1018
+
1019
+ Style/ComparableClamp:
1020
+ Enabled: true
1021
+
1022
+ Style/ConcatArrayLiterals:
1023
+ Enabled: true
1024
+
1025
+ Style/ConditionalAssignment:
1026
+ Enabled: true
1027
+
1028
+ Style/ConstantVisibility:
1029
+ Enabled: false
1030
+
1031
+ Style/Copyright:
1032
+ Enabled: false
1033
+
1034
+ Style/DataInheritance:
1035
+ Enabled: true
1036
+
1037
+ Style/DateTime:
1038
+ Enabled: false
1039
+
1040
+ Style/DefWithParentheses:
1041
+ Enabled: true
1042
+
1043
+ Style/Dir:
1044
+ Enabled: true
1045
+
1046
+ Style/DirEmpty:
1047
+ Enabled: true
1048
+
1049
+ Style/DisableCopsWithinSourceCodeDirective:
1050
+ Enabled: false
1051
+
1052
+ Style/DocumentDynamicEvalDefinition:
1053
+ Enabled: true
1054
+
1055
+ Style/Documentation:
1056
+ Enabled: false
1057
+
1058
+ Style/DocumentationMethod:
1059
+ Enabled: false
1060
+
1061
+ Style/DoubleCopDisableDirective:
1062
+ Enabled: true
1063
+
1064
+ Style/DoubleNegation:
1065
+ Enabled: true
1066
+
1067
+ Style/EachForSimpleLoop:
1068
+ Enabled: true
1069
+
1070
+ Style/EachWithObject:
1071
+ Enabled: true
1072
+
1073
+ Style/EmptyBlockParameter:
1074
+ Enabled: true
1075
+
1076
+ Style/EmptyCaseCondition:
1077
+ Enabled: true
1078
+
1079
+ Style/EmptyElse:
1080
+ Enabled: true
1081
+
1082
+ Style/EmptyHeredoc:
1083
+ Enabled: true
1084
+
1085
+ Style/EmptyLambdaParameter:
1086
+ Enabled: true
1087
+
1088
+ Style/EmptyLiteral:
1089
+ Enabled: true
1090
+
1091
+ Style/EmptyMethod:
1092
+ Enabled: true
1093
+
1094
+ Style/Encoding:
1095
+ Enabled: true
1096
+
1097
+ Style/EndBlock:
1098
+ Enabled: true
1099
+
1100
+ Style/EndlessMethod:
1101
+ Enabled: true
1102
+
1103
+ Style/EnvHome:
1104
+ Enabled: true
1105
+
1106
+ Style/EvalWithLocation:
1107
+ Enabled: true
1108
+
1109
+ Style/EvenOdd:
1110
+ Enabled: true
1111
+
1112
+ Style/ExactRegexpMatch:
1113
+ Enabled: true
1114
+
1115
+ Style/ExpandPathArguments:
1116
+ Enabled: true
1117
+
1118
+ Style/ExplicitBlockArgument:
1119
+ Enabled: true
1120
+
1121
+ Style/ExponentialNotation:
1122
+ Enabled: true
1123
+
1124
+ Style/FetchEnvVar:
1125
+ Enabled: true
1126
+
1127
+ Style/FileEmpty:
1128
+ Enabled: true
1129
+
1130
+ Style/FileRead:
1131
+ Enabled: true
1132
+
1133
+ Style/FileWrite:
1134
+ Enabled: true
1135
+
1136
+ Style/FloatDivision:
1137
+ Enabled: true
1138
+
1139
+ Style/For:
1140
+ Enabled: true
1141
+
1142
+ Style/FormatString:
1143
+ Enabled: true
1144
+
1145
+ Style/FormatStringToken:
1146
+ Enabled: true
1147
+
1148
+ Style/FrozenStringLiteralComment:
1149
+ Enabled: true
1150
+
1151
+ Style/GlobalStdStream:
1152
+ Enabled: true
1153
+
1154
+ Style/GlobalVars:
1155
+ Enabled: true
1156
+
1157
+ Style/GuardClause:
1158
+ Enabled: true
1159
+
1160
+ Style/HashAsLastArrayItem:
1161
+ Enabled: true
1162
+
1163
+ Style/HashConversion:
1164
+ Enabled: true
1165
+
1166
+ Style/HashEachMethods:
1167
+ Enabled: true
1168
+
1169
+ Style/HashExcept:
1170
+ Enabled: true
1171
+
1172
+ Style/HashLikeCase:
1173
+ Enabled: true
1174
+
1175
+ Style/HashSyntax:
1176
+ Enabled: true
1177
+
1178
+ Style/HashTransformKeys:
1179
+ Enabled: true
1180
+
1181
+ Style/HashTransformValues:
1182
+ Enabled: true
1183
+
1184
+ Style/IdenticalConditionalBranches:
1185
+ Enabled: true
1186
+
1187
+ Style/IfInsideElse:
1188
+ Enabled: true
1189
+
1190
+ Style/IfUnlessModifier:
1191
+ Enabled: true
1192
+
1193
+ Style/IfUnlessModifierOfIfUnless:
1194
+ Enabled: true
1195
+
1196
+ Style/IfWithBooleanLiteralBranches:
1197
+ Enabled: true
1198
+
1199
+ Style/IfWithSemicolon:
1200
+ Enabled: true
1201
+
1202
+ Style/ImplicitRuntimeError:
1203
+ Enabled: false
1204
+
1205
+ Style/InPatternThen:
1206
+ Enabled: true
1207
+
1208
+ Style/InfiniteLoop:
1209
+ Enabled: true
1210
+
1211
+ Style/InlineComment:
1212
+ Enabled: false
1213
+
1214
+ Style/InverseMethods:
1215
+ Enabled: true
1216
+
1217
+ Style/InvertibleUnlessCondition:
1218
+ Enabled: false
1219
+
1220
+ Style/IpAddresses:
1221
+ Enabled: false
1222
+
1223
+ Style/KeywordArgumentsMerging:
1224
+ Enabled: true
1225
+
1226
+ Style/KeywordParametersOrder:
1227
+ Enabled: true
1228
+
1229
+ Style/Lambda:
1230
+ Enabled: true
1231
+
1232
+ Style/LambdaCall:
1233
+ Enabled: true
1234
+
1235
+ Style/LineEndConcatenation:
1236
+ Enabled: true
1237
+
1238
+ Style/MagicCommentFormat:
1239
+ Enabled: true
1240
+
1241
+ Style/MapCompactWithConditionalBlock:
1242
+ Enabled: true
1243
+
1244
+ Style/MapIntoArray:
1245
+ Enabled: true
1246
+
1247
+ Style/MapToHash:
1248
+ Enabled: true
1249
+
1250
+ Style/MapToSet:
1251
+ Enabled: true
1252
+
1253
+ Style/MethodCallWithArgsParentheses:
1254
+ Enabled: false
1255
+
1256
+ Style/MethodCallWithoutArgsParentheses:
1257
+ Enabled: true
1258
+
1259
+ Style/MethodCalledOnDoEndBlock:
1260
+ Enabled: false
1261
+
1262
+ Style/MethodDefParentheses:
1263
+ Enabled: true
1264
+
1265
+ Style/MinMax:
1266
+ Enabled: true
1267
+
1268
+ Style/MinMaxComparison:
1269
+ Enabled: true
1270
+
1271
+ Style/MissingElse:
1272
+ Enabled: false
1273
+
1274
+ Style/MissingRespondToMissing:
1275
+ Enabled: true
1276
+
1277
+ Style/MixinGrouping:
1278
+ Enabled: true
1279
+
1280
+ Style/MixinUsage:
1281
+ Enabled: true
1282
+
1283
+ Style/ModuleFunction:
1284
+ Enabled: true
1285
+
1286
+ Style/MultilineBlockChain:
1287
+ Enabled: true
1288
+
1289
+ Style/MultilineIfModifier:
1290
+ Enabled: true
1291
+
1292
+ Style/MultilineIfThen:
1293
+ Enabled: true
1294
+
1295
+ Style/MultilineInPatternThen:
1296
+ Enabled: true
1297
+
1298
+ Style/MultilineMemoization:
1299
+ Enabled: true
1300
+
1301
+ Style/MultilineMethodSignature:
1302
+ Enabled: false
1303
+
1304
+ Style/MultilineTernaryOperator:
1305
+ Enabled: true
1306
+
1307
+ Style/MultilineWhenThen:
1308
+ Enabled: true
1309
+
1310
+ Style/MultipleComparison:
1311
+ Enabled: true
1312
+
1313
+ Style/MutableConstant:
1314
+ Enabled: true
1315
+
1316
+ Style/NegatedIf:
1317
+ Enabled: true
1318
+
1319
+ Style/NegatedIfElseCondition:
1320
+ Enabled: true
1321
+
1322
+ Style/NegatedUnless:
1323
+ Enabled: true
1324
+
1325
+ Style/NegatedWhile:
1326
+ Enabled: true
1327
+
1328
+ Style/NestedFileDirname:
1329
+ Enabled: true
1330
+
1331
+ Style/NestedModifier:
1332
+ Enabled: true
1333
+
1334
+ Style/NestedParenthesizedCalls:
1335
+ Enabled: true
1336
+
1337
+ Style/NestedTernaryOperator:
1338
+ Enabled: true
1339
+
1340
+ Style/Next:
1341
+ Enabled: true
1342
+
1343
+ Style/NilComparison:
1344
+ Enabled: true
1345
+
1346
+ Style/NilLambda:
1347
+ Enabled: true
1348
+
1349
+ Style/NonNilCheck:
1350
+ Enabled: true
1351
+
1352
+ Style/Not:
1353
+ Enabled: true
1354
+
1355
+ Style/NumberedParameters:
1356
+ Enabled: true
1357
+
1358
+ Style/NumberedParametersLimit:
1359
+ Enabled: true
1360
+
1361
+ Style/NumericLiteralPrefix:
1362
+ Enabled: true
1363
+
1364
+ Style/NumericLiterals:
1365
+ Enabled: true
1366
+
1367
+ Style/NumericPredicate:
1368
+ Enabled: true
1369
+
1370
+ Style/ObjectThen:
1371
+ Enabled: true
1372
+
1373
+ Style/OneLineConditional:
1374
+ Enabled: true
1375
+
1376
+ Style/OpenStructUse:
1377
+ Enabled: true
1378
+
1379
+ Style/OperatorMethodCall:
1380
+ Enabled: true
1381
+
1382
+ Style/OptionHash:
1383
+ Enabled: false
1384
+
1385
+ Style/OptionalArguments:
1386
+ Enabled: true
1387
+
1388
+ Style/OptionalBooleanParameter:
1389
+ Enabled: true
1390
+
1391
+ Style/OrAssignment:
1392
+ Enabled: true
1393
+
1394
+ Style/ParallelAssignment:
1395
+ Enabled: true
1396
+
1397
+ Style/ParenthesesAroundCondition:
1398
+ Enabled: true
1399
+
1400
+ Style/PercentLiteralDelimiters:
1401
+ Enabled: true
1402
+
1403
+ Style/PercentQLiterals:
1404
+ Enabled: true
1405
+
1406
+ Style/PerlBackrefs:
1407
+ Enabled: true
1408
+
1409
+ Style/PreferredHashMethods:
1410
+ Enabled: true
1411
+
1412
+ Style/Proc:
1413
+ Enabled: true
1414
+
1415
+ Style/QuotedSymbols:
1416
+ Enabled: true
1417
+
1418
+ Style/RaiseArgs:
1419
+ Enabled: true
1420
+
1421
+ Style/RandomWithOffset:
1422
+ Enabled: true
1423
+
1424
+ Style/RedundantArgument:
1425
+ Enabled: true
1426
+
1427
+ Style/RedundantArrayConstructor:
1428
+ Enabled: true
1429
+
1430
+ Style/RedundantAssignment:
1431
+ Enabled: true
1432
+
1433
+ Style/RedundantBegin:
1434
+ Enabled: true
1435
+
1436
+ Style/RedundantCapitalW:
1437
+ Enabled: true
1438
+
1439
+ Style/RedundantCondition:
1440
+ Enabled: true
1441
+
1442
+ Style/RedundantConditional:
1443
+ Enabled: true
1444
+
1445
+ Style/RedundantConstantBase:
1446
+ Enabled: true
1447
+
1448
+ Style/RedundantCurrentDirectoryInPath:
1449
+ Enabled: true
1450
+
1451
+ Style/RedundantDoubleSplatHashBraces:
1452
+ Enabled: true
1453
+
1454
+ Style/RedundantEach:
1455
+ Enabled: true
1456
+
1457
+ Style/RedundantException:
1458
+ Enabled: true
1459
+
1460
+ Style/RedundantFetchBlock:
1461
+ Enabled: true
1462
+
1463
+ Style/RedundantFileExtensionInRequire:
1464
+ Enabled: true
1465
+
1466
+ Style/RedundantFilterChain:
1467
+ Enabled: true
1468
+
1469
+ Style/RedundantFreeze:
1470
+ Enabled: true
1471
+
1472
+ Style/RedundantHeredocDelimiterQuotes:
1473
+ Enabled: true
1474
+
1475
+ Style/RedundantInitialize:
1476
+ Enabled: true
1477
+
1478
+ Style/RedundantInterpolation:
1479
+ Enabled: true
1480
+
1481
+ Style/RedundantLineContinuation:
1482
+ Enabled: true
1483
+
1484
+ Style/RedundantParentheses:
1485
+ Enabled: true
1486
+
1487
+ Style/RedundantPercentQ:
1488
+ Enabled: true
1489
+
1490
+ Style/RedundantRegexpArgument:
1491
+ Enabled: true
1492
+
1493
+ Style/RedundantRegexpCharacterClass:
1494
+ Enabled: true
1495
+
1496
+ Style/RedundantRegexpConstructor:
1497
+ Enabled: true
1498
+
1499
+ Style/RedundantRegexpEscape:
1500
+ Enabled: true
1501
+
1502
+ Style/RedundantReturn:
1503
+ Enabled: true
1504
+
1505
+ Style/RedundantSelf:
1506
+ Enabled: true
1507
+
1508
+ Style/RedundantSelfAssignment:
1509
+ Enabled: true
1510
+
1511
+ Style/RedundantSelfAssignmentBranch:
1512
+ Enabled: true
1513
+
1514
+ Style/RedundantSort:
1515
+ Enabled: true
1516
+
1517
+ Style/RedundantSortBy:
1518
+ Enabled: true
1519
+
1520
+ Style/RedundantStringEscape:
1521
+ Enabled: true
1522
+
1523
+ Style/RedundantInterpolationUnfreeze:
1524
+ Enabled: true
1525
+
1526
+ Style/RegexpLiteral:
1527
+ Enabled: true
1528
+
1529
+ Style/RequireOrder:
1530
+ Enabled: false
1531
+
1532
+ Style/RescueModifier:
1533
+ Enabled: true
1534
+
1535
+ Style/RescueStandardError:
1536
+ Enabled: true
1537
+
1538
+ Style/ReturnNil:
1539
+ Enabled: false
1540
+
1541
+ Style/ReturnNilInPredicateMethodDefinition:
1542
+ Enabled: true
1543
+
1544
+ Style/SafeNavigation:
1545
+ Enabled: true
1546
+
1547
+ Style/SafeNavigationChainLength:
1548
+ Enabled: true
1549
+
1550
+ Style/Sample:
1551
+ Enabled: true
1552
+
1553
+ Style/SelectByRegexp:
1554
+ Enabled: true
1555
+
1556
+ Style/SelfAssignment:
1557
+ Enabled: true
1558
+
1559
+ Style/Semicolon:
1560
+ Enabled: true
1561
+
1562
+ Style/Send:
1563
+ Enabled: false
1564
+
1565
+ Style/SendWithLiteralMethodName:
1566
+ Enabled: true
1567
+
1568
+ Style/SignalException:
1569
+ Enabled: true
1570
+
1571
+ Style/SingleArgumentDig:
1572
+ Enabled: true
1573
+
1574
+ Style/SingleLineBlockParams:
1575
+ Enabled: false
1576
+
1577
+ Style/SingleLineDoEndBlock:
1578
+ Enabled: true
1579
+
1580
+ Style/SingleLineMethods:
1581
+ Enabled: true
1582
+
1583
+ Style/SlicingWithRange:
1584
+ Enabled: true
1585
+
1586
+ Style/SoleNestedConditional:
1587
+ Enabled: true
1588
+
1589
+ Style/SpecialGlobalVars:
1590
+ Enabled: true
1591
+
1592
+ Style/StabbyLambdaParentheses:
1593
+ Enabled: true
1594
+
1595
+ Style/StaticClass:
1596
+ Enabled: false
1597
+
1598
+ Style/StderrPuts:
1599
+ Enabled: true
1600
+
1601
+ Style/StringChars:
1602
+ Enabled: true
1603
+
1604
+ Style/StringConcatenation:
1605
+ Enabled: true
1606
+
1607
+ Style/StringHashKeys:
1608
+ Enabled: false
1609
+
1610
+ Style/StringLiterals:
1611
+ Enabled: true
1612
+ EnforcedStyle: double_quotes
1613
+
1614
+ Style/StringLiteralsInInterpolation:
1615
+ Enabled: true
1616
+
1617
+ Style/StringMethods:
1618
+ Enabled: false
1619
+
1620
+ Style/Strip:
1621
+ Enabled: true
1622
+
1623
+ Style/StructInheritance:
1624
+ Enabled: true
1625
+
1626
+ Style/SuperArguments:
1627
+ Enabled: true
1628
+
1629
+ Style/SuperWithArgsParentheses:
1630
+ Enabled: true
1631
+
1632
+ Style/SwapValues:
1633
+ Enabled: true
1634
+
1635
+ Style/SymbolArray:
1636
+ Enabled: true
1637
+
1638
+ Style/SymbolLiteral:
1639
+ Enabled: true
1640
+
1641
+ Style/SymbolProc:
1642
+ Enabled: true
1643
+
1644
+ Style/TernaryParentheses:
1645
+ Enabled: true
1646
+
1647
+ Style/TopLevelMethodDefinition:
1648
+ Enabled: false
1649
+
1650
+ Style/TrailingBodyOnClass:
1651
+ Enabled: true
1652
+
1653
+ Style/TrailingBodyOnMethodDefinition:
1654
+ Enabled: true
1655
+
1656
+ Style/TrailingBodyOnModule:
1657
+ Enabled: true
1658
+
1659
+ Style/TrailingCommaInArguments:
1660
+ Enabled: true
1661
+
1662
+ Style/TrailingCommaInArrayLiteral:
1663
+ Enabled: true
1664
+
1665
+ Style/TrailingCommaInBlockArgs:
1666
+ Enabled: false
1667
+
1668
+ Style/TrailingCommaInHashLiteral:
1669
+ Enabled: true
1670
+
1671
+ Style/TrailingMethodEndStatement:
1672
+ Enabled: true
1673
+
1674
+ Style/TrailingUnderscoreVariable:
1675
+ Enabled: true
1676
+
1677
+ Style/TrivialAccessors:
1678
+ Enabled: true
1679
+
1680
+ Style/UnlessElse:
1681
+ Enabled: true
1682
+
1683
+ Style/UnlessLogicalOperators:
1684
+ Enabled: false
1685
+
1686
+ Style/UnpackFirst:
1687
+ Enabled: true
1688
+
1689
+ Style/VariableInterpolation:
1690
+ Enabled: true
1691
+
1692
+ Style/WhenThen:
1693
+ Enabled: true
1694
+
1695
+ Style/WhileUntilDo:
1696
+ Enabled: true
1697
+
1698
+ Style/WhileUntilModifier:
1699
+ Enabled: true
1700
+
1701
+ Style/WordArray:
1702
+ Enabled: true
1703
+
1704
+ Style/YAMLFileRead:
1705
+ Enabled: true
1706
+
1707
+ Style/YodaCondition:
1708
+ Enabled: true
1709
+
1710
+ Style/YodaExpression:
1711
+ Enabled: false
1712
+
1713
+ Style/ZeroLengthPredicate:
1714
+ Enabled: true
1715
+
1716
+ # rubocop-faker
1717
+
1718
+ Faker/DeprecatedArguments:
1719
+ Enabled: true
1720
+
1721
+ # rubocop-minitest
1722
+
1723
+ Minitest:
1724
+ Enabled: true
1725
+
1726
+ Minitest/AssertEmpty:
1727
+ Enabled: true
1728
+
1729
+ Minitest/AssertEmptyLiteral:
1730
+ Enabled: true
1731
+
1732
+ Minitest/AssertEqual:
1733
+ Enabled: true
1734
+
1735
+ Minitest/AssertInDelta:
1736
+ Enabled: true
1737
+
1738
+ Minitest/AssertIncludes:
1739
+ Enabled: true
1740
+
1741
+ Minitest/AssertInstanceOf:
1742
+ Enabled: true
1743
+
1744
+ Minitest/AssertKindOf:
1745
+ Enabled: true
1746
+
1747
+ Minitest/AssertMatch:
1748
+ Enabled: true
1749
+
1750
+ Minitest/AssertNil:
1751
+ Enabled: true
1752
+
1753
+ Minitest/AssertOperator:
1754
+ Enabled: true
1755
+
1756
+ Minitest/AssertOutput:
1757
+ Enabled: true
1758
+
1759
+ Minitest/AssertPathExists:
1760
+ Enabled: true
1761
+
1762
+ Minitest/AssertPredicate:
1763
+ Enabled: true
1764
+
1765
+ Minitest/AssertRaisesCompoundBody:
1766
+ Enabled: true
1767
+
1768
+ Minitest/AssertRaisesWithRegexpArgument:
1769
+ Enabled: true
1770
+
1771
+ Minitest/AssertRespondTo:
1772
+ Enabled: true
1773
+
1774
+ Minitest/AssertSame:
1775
+ Enabled: true
1776
+
1777
+ Minitest/AssertSilent:
1778
+ Enabled: true
1779
+
1780
+ Minitest/AssertTruthy:
1781
+ Enabled: true
1782
+
1783
+ Minitest/AssertWithExpectedArgument:
1784
+ Enabled: true
1785
+
1786
+ Minitest/AssertionInLifecycleHook:
1787
+ Enabled: true
1788
+
1789
+ Minitest/DuplicateTestRun:
1790
+ Enabled: true
1791
+
1792
+ Minitest/EmptyLineBeforeAssertionMethods:
1793
+ Enabled: true
1794
+
1795
+ Minitest/Focus:
1796
+ Enabled: true
1797
+
1798
+ Minitest/GlobalExpectations:
1799
+ Enabled: true
1800
+
1801
+ Minitest/LifecycleHooksOrder:
1802
+ Enabled: true
1803
+
1804
+ Minitest/LiteralAsActualArgument:
1805
+ Enabled: true
1806
+
1807
+ Minitest/MultipleAssertions:
1808
+ Enabled: true
1809
+
1810
+ Minitest/NoAssertions:
1811
+ Enabled: false
1812
+
1813
+ Minitest/NoTestCases:
1814
+ Enabled: false
1815
+
1816
+ Minitest/NonExecutableTestMethod:
1817
+ Enabled: true
1818
+
1819
+ Minitest/NonPublicTestMethod:
1820
+ Enabled: true
1821
+
1822
+ Minitest/RedundantMessageArgument:
1823
+ Enabled: true
1824
+
1825
+ Minitest/RefuteEmpty:
1826
+ Enabled: true
1827
+
1828
+ Minitest/RefuteEqual:
1829
+ Enabled: true
1830
+
1831
+ Minitest/RefuteFalse:
1832
+ Enabled: true
1833
+
1834
+ Minitest/RefuteInDelta:
1835
+ Enabled: true
1836
+
1837
+ Minitest/RefuteIncludes:
1838
+ Enabled: true
1839
+
1840
+ Minitest/RefuteInstanceOf:
1841
+ Enabled: true
1842
+
1843
+ Minitest/RefuteKindOf:
1844
+ Enabled: true
1845
+
1846
+ Minitest/RefuteMatch:
1847
+ Enabled: true
1848
+
1849
+ Minitest/RefuteNil:
1850
+ Enabled: true
1851
+
1852
+ Minitest/RefuteOperator:
1853
+ Enabled: true
1854
+
1855
+ Minitest/RefutePathExists:
1856
+ Enabled: true
1857
+
1858
+ Minitest/RefutePredicate:
1859
+ Enabled: true
1860
+
1861
+ Minitest/RefuteRespondTo:
1862
+ Enabled: true
1863
+
1864
+ Minitest/RefuteSame:
1865
+ Enabled: true
1866
+
1867
+ Minitest/ReturnInTestMethod:
1868
+ Enabled: true
1869
+
1870
+ Minitest/SkipEnsure:
1871
+ Enabled: true
1872
+
1873
+ Minitest/SkipWithoutReason:
1874
+ Enabled: true
1875
+
1876
+ Minitest/TestFileName:
1877
+ Enabled: true
1878
+
1879
+ Minitest/TestMethodName:
1880
+ Enabled: true
1881
+
1882
+ Minitest/UnreachableAssertion:
1883
+ Enabled: true
1884
+
1885
+ Minitest/UnspecifiedException:
1886
+ Enabled: true
1887
+
1888
+ Minitest/UselessAssertion:
1889
+ Enabled: true
1890
+
1891
+ # rubocop-performance
1892
+
1893
+ Performance:
1894
+ Enabled: true
1895
+
1896
+ Performance/AncestorsInclude:
1897
+ Enabled: true
1898
+
1899
+ Performance/ArraySemiInfiniteRangeSlice:
1900
+ Enabled: false
1901
+
1902
+ Performance/BigDecimalWithNumericArgument:
1903
+ Enabled: true
1904
+
1905
+ Performance/BindCall:
1906
+ Enabled: true
1907
+
1908
+ Performance/BlockGivenWithExplicitBlock:
1909
+ Enabled: true
1910
+
1911
+ Performance/Caller:
1912
+ Enabled: true
1913
+
1914
+ Performance/CaseWhenSplat:
1915
+ Enabled: false
1916
+
1917
+ Performance/Casecmp:
1918
+ Enabled: false
1919
+
1920
+ Performance/ChainArrayAllocation:
1921
+ Enabled: false
1922
+
1923
+ Performance/CollectionLiteralInLoop:
1924
+ Enabled: true
1925
+
1926
+ Performance/CompareWithBlock:
1927
+ Enabled: true
1928
+
1929
+ Performance/ConcurrentMonotonicTime:
1930
+ Enabled: true
1931
+
1932
+ Performance/ConstantRegexp:
1933
+ Enabled: true
1934
+
1935
+ Performance/Count:
1936
+ Enabled: true
1937
+
1938
+ Performance/DeletePrefix:
1939
+ Enabled: true
1940
+
1941
+ Performance/DeleteSuffix:
1942
+ Enabled: true
1943
+
1944
+ Performance/Detect:
1945
+ Enabled: true
1946
+
1947
+ Performance/DoubleStartEndWith:
1948
+ Enabled: true
1949
+
1950
+ Performance/EndWith:
1951
+ Enabled: true
1952
+
1953
+ Performance/FixedSize:
1954
+ Enabled: true
1955
+
1956
+ Performance/FlatMap:
1957
+ Enabled: true
1958
+
1959
+ Performance/InefficientHashSearch:
1960
+ Enabled: true
1961
+
1962
+ Performance/IoReadlines:
1963
+ Enabled: false
1964
+
1965
+ Performance/MapCompact:
1966
+ Enabled: true
1967
+
1968
+ Performance/MapMethodChain:
1969
+ Enabled: true
1970
+
1971
+ Performance/MethodObjectAsBlock:
1972
+ Enabled: true
1973
+
1974
+ Performance/OpenStruct:
1975
+ Enabled: false
1976
+
1977
+ Performance/RangeInclude:
1978
+ Enabled: true
1979
+
1980
+ Performance/RedundantBlockCall:
1981
+ Enabled: true
1982
+
1983
+ Performance/RedundantEqualityComparisonBlock:
1984
+ Enabled: true
1985
+
1986
+ Performance/RedundantMatch:
1987
+ Enabled: true
1988
+
1989
+ Performance/RedundantMerge:
1990
+ Enabled: true
1991
+
1992
+ Performance/RedundantSortBlock:
1993
+ Enabled: true
1994
+
1995
+ Performance/RedundantSplitRegexpArgument:
1996
+ Enabled: true
1997
+
1998
+ Performance/RedundantStringChars:
1999
+ Enabled: true
2000
+
2001
+ Performance/RegexpMatch:
2002
+ Enabled: true
2003
+
2004
+ Performance/ReverseEach:
2005
+ Enabled: true
2006
+
2007
+ Performance/ReverseFirst:
2008
+ Enabled: true
2009
+
2010
+ Performance/SelectMap:
2011
+ Enabled: false
2012
+
2013
+ Performance/Size:
2014
+ Enabled: true
2015
+
2016
+ Performance/SortReverse:
2017
+ Enabled: true
2018
+
2019
+ Performance/Squeeze:
2020
+ Enabled: true
2021
+
2022
+ Performance/StartWith:
2023
+ Enabled: true
2024
+
2025
+ Performance/StringIdentifierArgument:
2026
+ Enabled: true
2027
+
2028
+ Performance/StringInclude:
2029
+ Enabled: true
2030
+
2031
+ Performance/StringReplacement:
2032
+ Enabled: true
2033
+
2034
+ Performance/Sum:
2035
+ Enabled: true
2036
+
2037
+ Performance/TimesMap:
2038
+ Enabled: true
2039
+
2040
+ Performance/UnfreezeString:
2041
+ Enabled: true
2042
+
2043
+ Performance/UriDefaultParser:
2044
+ Enabled: true
2045
+
2046
+ # rubocop-rake
2047
+
2048
+ Rake:
2049
+ Enabled: true
2050
+
2051
+ Rake/ClassDefinitionInTask:
2052
+ Enabled: true
2053
+
2054
+ Rake/Desc:
2055
+ Enabled: true
2056
+
2057
+ Rake/DuplicateNamespace:
2058
+ Enabled: true
2059
+
2060
+ Rake/DuplicateTask:
2061
+ Enabled: true
2062
+
2063
+ Rake/MethodDefinitionInTask:
2064
+ Enabled: true