standard 1.3.0 → 1.4.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.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +7 -7
- data/README.md +19 -0
- data/Rakefile +0 -2
- data/config/base.yml +609 -4
- data/config/ruby-2.5.yml +1 -1
- data/config/ruby-2.6.yml +10 -0
- data/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +6 -2
- data/lib/standard/creates_config_store/sets_target_ruby_version.rb +6 -2
- data/lib/standard/formatter.rb +25 -2
- data/lib/standard/loads_yaml_config.rb +7 -1
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +1 -1
- metadata +5 -4
data/config/base.yml
CHANGED
@@ -4,7 +4,6 @@ require:
|
|
4
4
|
AllCops:
|
5
5
|
# Prevent RuboCop from exploding when it finds an older-than-2.4 .ruby-version
|
6
6
|
TargetRubyVersion: 2.5
|
7
|
-
DisabledByDefault: true
|
8
7
|
Exclude: []
|
9
8
|
|
10
9
|
Bundler/DuplicatedGem:
|
@@ -14,6 +13,15 @@ Bundler/DuplicatedGem:
|
|
14
13
|
- '**/Gemfile'
|
15
14
|
- '**/gems.rb'
|
16
15
|
|
16
|
+
Bundler/GemComment:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
Bundler/GemFilename:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
Bundler/GemVersion:
|
23
|
+
Enabled: false
|
24
|
+
|
17
25
|
Bundler/InsecureProtocolSource:
|
18
26
|
Enabled: true
|
19
27
|
Include:
|
@@ -21,6 +29,9 @@ Bundler/InsecureProtocolSource:
|
|
21
29
|
- '**/Gemfile'
|
22
30
|
- '**/gems.rb'
|
23
31
|
|
32
|
+
Bundler/OrderedGems:
|
33
|
+
Enabled: false
|
34
|
+
|
24
35
|
Gemspec/DateAssignment:
|
25
36
|
Enabled: true
|
26
37
|
|
@@ -29,6 +40,15 @@ Gemspec/DuplicatedAssignment:
|
|
29
40
|
Include:
|
30
41
|
- '**/*.gemspec'
|
31
42
|
|
43
|
+
Gemspec/OrderedDependencies:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
Gemspec/RequiredRubyVersion:
|
47
|
+
Enabled: false
|
48
|
+
|
49
|
+
Gemspec/RubyVersionGlobalsUsage:
|
50
|
+
Enabled: false
|
51
|
+
|
32
52
|
Layout/AccessModifierIndentation:
|
33
53
|
Enabled: true
|
34
54
|
EnforcedStyle: indent
|
@@ -64,6 +84,9 @@ Layout/CaseIndentation:
|
|
64
84
|
# https://github.com/rubocop-hq/rubocop/issues/6447
|
65
85
|
Enabled: false
|
66
86
|
|
87
|
+
Layout/ClassStructure:
|
88
|
+
Enabled: false
|
89
|
+
|
67
90
|
Layout/ClosingHeredocIndentation:
|
68
91
|
Enabled: true
|
69
92
|
|
@@ -94,9 +117,15 @@ Layout/EmptyComment:
|
|
94
117
|
AllowBorderComment: true
|
95
118
|
AllowMarginComment: true
|
96
119
|
|
120
|
+
Layout/EmptyLineAfterGuardClause:
|
121
|
+
Enabled: false
|
122
|
+
|
97
123
|
Layout/EmptyLineAfterMagicComment:
|
98
124
|
Enabled: true
|
99
125
|
|
126
|
+
Layout/EmptyLineAfterMultilineCondition:
|
127
|
+
Enabled: false
|
128
|
+
|
100
129
|
Layout/EmptyLineBetweenDefs:
|
101
130
|
Enabled: true
|
102
131
|
AllowAdjacentOneLineDefs: false
|
@@ -111,6 +140,9 @@ Layout/EmptyLinesAroundAccessModifier:
|
|
111
140
|
Layout/EmptyLinesAroundArguments:
|
112
141
|
Enabled: true
|
113
142
|
|
143
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
144
|
+
Enabled: false
|
145
|
+
|
114
146
|
Layout/EmptyLinesAroundBeginBody:
|
115
147
|
Enabled: true
|
116
148
|
|
@@ -158,17 +190,35 @@ Layout/FirstArrayElementIndentation:
|
|
158
190
|
EnforcedStyle: consistent
|
159
191
|
IndentationWidth: ~
|
160
192
|
|
193
|
+
Layout/FirstArrayElementLineBreak:
|
194
|
+
Enabled: false
|
195
|
+
|
161
196
|
Layout/FirstHashElementIndentation:
|
162
197
|
Enabled: true
|
163
198
|
EnforcedStyle: consistent
|
164
199
|
IndentationWidth: ~
|
165
200
|
|
201
|
+
Layout/FirstHashElementLineBreak:
|
202
|
+
Enabled: false
|
203
|
+
|
204
|
+
Layout/FirstMethodArgumentLineBreak:
|
205
|
+
Enabled: false
|
206
|
+
|
207
|
+
Layout/FirstMethodParameterLineBreak:
|
208
|
+
Enabled: false
|
209
|
+
|
210
|
+
Layout/FirstParameterIndentation:
|
211
|
+
Enabled: false
|
212
|
+
|
166
213
|
Layout/HashAlignment:
|
167
214
|
Enabled: true
|
168
215
|
EnforcedHashRocketStyle: key
|
169
216
|
EnforcedColonStyle: key
|
170
217
|
EnforcedLastArgumentHashStyle: always_inspect
|
171
218
|
|
219
|
+
Layout/HeredocArgumentClosingParenthesis:
|
220
|
+
Enabled: false
|
221
|
+
|
172
222
|
Layout/HeredocIndentation:
|
173
223
|
Enabled: true
|
174
224
|
|
@@ -194,10 +244,22 @@ Layout/LeadingCommentSpace:
|
|
194
244
|
Layout/LeadingEmptyLines:
|
195
245
|
Enabled: true
|
196
246
|
|
247
|
+
Layout/LineEndStringConcatenationIndentation:
|
248
|
+
Enabled: false
|
249
|
+
|
250
|
+
Layout/LineLength:
|
251
|
+
Enabled: false
|
252
|
+
|
197
253
|
Layout/MultilineArrayBraceLayout:
|
198
254
|
Enabled: true
|
199
255
|
EnforcedStyle: symmetrical
|
200
256
|
|
257
|
+
Layout/MultilineArrayLineBreaks:
|
258
|
+
Enabled: false
|
259
|
+
|
260
|
+
Layout/MultilineAssignmentLayout:
|
261
|
+
Enabled: false
|
262
|
+
|
201
263
|
Layout/MultilineBlockLayout:
|
202
264
|
Enabled: true
|
203
265
|
|
@@ -205,6 +267,12 @@ Layout/MultilineHashBraceLayout:
|
|
205
267
|
Enabled: true
|
206
268
|
EnforcedStyle: symmetrical
|
207
269
|
|
270
|
+
Layout/MultilineHashKeyLineBreaks:
|
271
|
+
Enabled: false
|
272
|
+
|
273
|
+
Layout/MultilineMethodArgumentLineBreaks:
|
274
|
+
Enabled: false
|
275
|
+
|
208
276
|
Layout/MultilineMethodCallBraceLayout:
|
209
277
|
Enabled: true
|
210
278
|
EnforcedStyle: symmetrical
|
@@ -228,9 +296,15 @@ Layout/ParameterAlignment:
|
|
228
296
|
EnforcedStyle: with_fixed_indentation
|
229
297
|
IndentationWidth: ~
|
230
298
|
|
299
|
+
Layout/RedundantLineBreak:
|
300
|
+
Enabled: false
|
301
|
+
|
231
302
|
Layout/RescueEnsureAlignment:
|
232
303
|
Enabled: true
|
233
304
|
|
305
|
+
Layout/SingleLineBlockChain:
|
306
|
+
Enabled: false
|
307
|
+
|
234
308
|
Layout/SpaceAfterColon:
|
235
309
|
Enabled: true
|
236
310
|
|
@@ -269,6 +343,9 @@ Layout/SpaceBeforeBlockBraces:
|
|
269
343
|
EnforcedStyle: space
|
270
344
|
EnforcedStyleForEmptyBraces: space
|
271
345
|
|
346
|
+
Layout/SpaceBeforeBrackets:
|
347
|
+
Enabled: false
|
348
|
+
|
272
349
|
Layout/SpaceBeforeComma:
|
273
350
|
Enabled: true
|
274
351
|
|
@@ -335,9 +412,18 @@ Layout/TrailingWhitespace:
|
|
335
412
|
Lint/AmbiguousAssignment:
|
336
413
|
Enabled: true
|
337
414
|
|
415
|
+
Lint/AmbiguousBlockAssociation:
|
416
|
+
Enabled: false
|
417
|
+
|
338
418
|
Lint/AmbiguousOperator:
|
339
419
|
Enabled: true
|
340
420
|
|
421
|
+
Lint/AmbiguousOperatorPrecedence:
|
422
|
+
Enabled: false
|
423
|
+
|
424
|
+
Lint/AmbiguousRange:
|
425
|
+
Enabled: false
|
426
|
+
|
341
427
|
Lint/AmbiguousRegexpLiteral:
|
342
428
|
Enabled: true
|
343
429
|
|
@@ -360,6 +446,9 @@ Lint/CircularArgumentReference:
|
|
360
446
|
Lint/ConstantDefinitionInBlock:
|
361
447
|
Enabled: true
|
362
448
|
|
449
|
+
Lint/ConstantResolution:
|
450
|
+
Enabled: false
|
451
|
+
|
363
452
|
Lint/Debugger:
|
364
453
|
Enabled: true
|
365
454
|
|
@@ -372,6 +461,12 @@ Lint/DeprecatedConstants:
|
|
372
461
|
Lint/DeprecatedOpenSSLConstant:
|
373
462
|
Enabled: true
|
374
463
|
|
464
|
+
Lint/DisjunctiveAssignmentInConstructor:
|
465
|
+
Enabled: false
|
466
|
+
|
467
|
+
Lint/DuplicateBranch:
|
468
|
+
Enabled: false
|
469
|
+
|
375
470
|
Lint/DuplicateCaseCondition:
|
376
471
|
Enabled: true
|
377
472
|
|
@@ -399,6 +494,15 @@ Lint/EachWithObjectArgument:
|
|
399
494
|
Lint/ElseLayout:
|
400
495
|
Enabled: true
|
401
496
|
|
497
|
+
Lint/EmptyBlock:
|
498
|
+
Enabled: false
|
499
|
+
|
500
|
+
Lint/EmptyClass:
|
501
|
+
Enabled: false
|
502
|
+
|
503
|
+
Lint/EmptyConditionalBody:
|
504
|
+
Enabled: false
|
505
|
+
|
402
506
|
Lint/EmptyEnsure:
|
403
507
|
Enabled: true
|
404
508
|
AutoCorrect: true
|
@@ -406,6 +510,12 @@ Lint/EmptyEnsure:
|
|
406
510
|
Lint/EmptyExpression:
|
407
511
|
Enabled: true
|
408
512
|
|
513
|
+
Lint/EmptyFile:
|
514
|
+
Enabled: false
|
515
|
+
|
516
|
+
Lint/EmptyInPattern:
|
517
|
+
Enabled: false
|
518
|
+
|
409
519
|
Lint/EmptyInterpolation:
|
410
520
|
Enabled: true
|
411
521
|
|
@@ -431,6 +541,12 @@ Lint/FloatOutOfRange:
|
|
431
541
|
Lint/FormatParameterMismatch:
|
432
542
|
Enabled: true
|
433
543
|
|
544
|
+
Lint/HashCompareByIdentity:
|
545
|
+
Enabled: false
|
546
|
+
|
547
|
+
Lint/HeredocMethodCallPosition:
|
548
|
+
Enabled: false
|
549
|
+
|
434
550
|
Lint/IdentityComparison:
|
435
551
|
Enabled: true
|
436
552
|
|
@@ -447,6 +563,9 @@ Lint/InheritException:
|
|
447
563
|
Lint/InterpolationCheck:
|
448
564
|
Enabled: true
|
449
565
|
|
566
|
+
Lint/LambdaWithoutLiteralBlock:
|
567
|
+
Enabled: false
|
568
|
+
|
450
569
|
Lint/LiteralAsCondition:
|
451
570
|
Enabled: true
|
452
571
|
|
@@ -460,6 +579,9 @@ Lint/MissingCopEnableDirective:
|
|
460
579
|
Enabled: true
|
461
580
|
MaximumRangeSize: .inf
|
462
581
|
|
582
|
+
Lint/MissingSuper:
|
583
|
+
Enabled: false
|
584
|
+
|
463
585
|
Lint/MixedRegexpCaptureTypes:
|
464
586
|
Enabled: true
|
465
587
|
|
@@ -475,12 +597,18 @@ Lint/NestedPercentLiteral:
|
|
475
597
|
Lint/NextWithoutAccumulator:
|
476
598
|
Enabled: true
|
477
599
|
|
600
|
+
Lint/NoReturnInBeginEndBlocks:
|
601
|
+
Enabled: false
|
602
|
+
|
478
603
|
Lint/NonDeterministicRequireOrder:
|
479
604
|
Enabled: true
|
480
605
|
|
481
606
|
Lint/NonLocalExitFromIterator:
|
482
607
|
Enabled: true
|
483
608
|
|
609
|
+
Lint/NumberConversion:
|
610
|
+
Enabled: false
|
611
|
+
|
484
612
|
Lint/NumberedParameterAssignment:
|
485
613
|
Enabled: true
|
486
614
|
|
@@ -496,6 +624,9 @@ Lint/OutOfRangeRegexpRef:
|
|
496
624
|
Lint/ParenthesesAsGroupedExpression:
|
497
625
|
Enabled: true
|
498
626
|
|
627
|
+
Lint/PercentStringArray:
|
628
|
+
Enabled: false
|
629
|
+
|
499
630
|
Lint/PercentSymbolArray:
|
500
631
|
Enabled: true
|
501
632
|
|
@@ -505,9 +636,21 @@ Lint/RaiseException:
|
|
505
636
|
Lint/RandOne:
|
506
637
|
Enabled: true
|
507
638
|
|
639
|
+
Lint/RedundantCopDisableDirective:
|
640
|
+
Enabled: true
|
641
|
+
|
642
|
+
Lint/RedundantCopEnableDirective:
|
643
|
+
Enabled: false
|
644
|
+
|
645
|
+
Lint/RedundantDirGlobSort:
|
646
|
+
Enabled: false
|
647
|
+
|
508
648
|
Lint/RedundantRequireStatement:
|
509
649
|
Enabled: true
|
510
650
|
|
651
|
+
Lint/RedundantSafeNavigation:
|
652
|
+
Enabled: false
|
653
|
+
|
511
654
|
Lint/RedundantSplatExpansion:
|
512
655
|
Enabled: true
|
513
656
|
|
@@ -556,9 +699,15 @@ Lint/SafeNavigationConsistency:
|
|
556
699
|
Lint/SafeNavigationWithEmpty:
|
557
700
|
Enabled: true
|
558
701
|
|
702
|
+
Lint/ScriptPermission:
|
703
|
+
Enabled: false
|
704
|
+
|
559
705
|
Lint/SelfAssignment:
|
560
706
|
Enabled: true
|
561
707
|
|
708
|
+
Lint/SendWithMixinArgument:
|
709
|
+
Enabled: false
|
710
|
+
|
562
711
|
Lint/ShadowedArgument:
|
563
712
|
Enabled: true
|
564
713
|
IgnoreImplicitReferences: false
|
@@ -566,12 +715,27 @@ Lint/ShadowedArgument:
|
|
566
715
|
Lint/ShadowedException:
|
567
716
|
Enabled: true
|
568
717
|
|
718
|
+
Lint/ShadowingOuterLocalVariable:
|
719
|
+
Enabled: false
|
720
|
+
|
721
|
+
Lint/StructNewOverride:
|
722
|
+
Enabled: false
|
723
|
+
|
724
|
+
Lint/SuppressedException:
|
725
|
+
Enabled: false
|
726
|
+
|
569
727
|
Lint/SymbolConversion:
|
570
728
|
Enabled: true
|
571
729
|
|
572
730
|
Lint/Syntax:
|
573
731
|
Enabled: true
|
574
732
|
|
733
|
+
Lint/ToEnumArguments:
|
734
|
+
Enabled: false
|
735
|
+
|
736
|
+
Lint/ToJSON:
|
737
|
+
Enabled: false
|
738
|
+
|
575
739
|
Lint/TopLevelReturnWithArgument:
|
576
740
|
Enabled: true
|
577
741
|
|
@@ -584,24 +748,45 @@ Lint/TripleQuotes:
|
|
584
748
|
Lint/UnderscorePrefixedVariableName:
|
585
749
|
Enabled: true
|
586
750
|
|
751
|
+
Lint/UnexpectedBlockArity:
|
752
|
+
Enabled: false
|
753
|
+
|
587
754
|
Lint/UnifiedInteger:
|
588
755
|
Enabled: true
|
589
756
|
|
757
|
+
Lint/UnmodifiedReduceAccumulator:
|
758
|
+
Enabled: false
|
759
|
+
|
590
760
|
Lint/UnreachableCode:
|
591
761
|
Enabled: true
|
592
762
|
|
763
|
+
Lint/UnreachableLoop:
|
764
|
+
Enabled: false
|
765
|
+
|
766
|
+
Lint/UnusedBlockArgument:
|
767
|
+
Enabled: false
|
768
|
+
|
769
|
+
Lint/UnusedMethodArgument:
|
770
|
+
Enabled: false
|
771
|
+
|
593
772
|
Lint/UriEscapeUnescape:
|
594
773
|
Enabled: true
|
595
774
|
|
596
775
|
Lint/UriRegexp:
|
597
776
|
Enabled: true
|
598
777
|
|
778
|
+
Lint/UselessAccessModifier:
|
779
|
+
Enabled: false
|
780
|
+
|
599
781
|
Lint/UselessAssignment:
|
600
782
|
Enabled: true
|
601
783
|
|
602
784
|
Lint/UselessElseWithoutRescue:
|
603
785
|
Enabled: true
|
604
786
|
|
787
|
+
Lint/UselessMethodDefinition:
|
788
|
+
Enabled: false
|
789
|
+
|
605
790
|
Lint/UselessSetterCall:
|
606
791
|
Enabled: true
|
607
792
|
|
@@ -612,9 +797,48 @@ Lint/Void:
|
|
612
797
|
Enabled: true
|
613
798
|
CheckForMethodsWithNoSideEffects: false
|
614
799
|
|
800
|
+
Lint/IncompatibleIoSelectWithFiberScheduler:
|
801
|
+
Enabled: false
|
802
|
+
|
803
|
+
Lint/RequireRelativeSelfPath:
|
804
|
+
Enabled: true
|
805
|
+
|
806
|
+
Metrics/AbcSize:
|
807
|
+
Enabled: false
|
808
|
+
|
809
|
+
Metrics/BlockLength:
|
810
|
+
Enabled: false
|
811
|
+
|
812
|
+
Metrics/BlockNesting:
|
813
|
+
Enabled: false
|
814
|
+
|
815
|
+
Metrics/ClassLength:
|
816
|
+
Enabled: false
|
817
|
+
|
818
|
+
Metrics/CyclomaticComplexity:
|
819
|
+
Enabled: false
|
820
|
+
|
821
|
+
Metrics/MethodLength:
|
822
|
+
Enabled: false
|
823
|
+
|
824
|
+
Metrics/ModuleLength:
|
825
|
+
Enabled: false
|
826
|
+
|
827
|
+
Metrics/ParameterLists:
|
828
|
+
Enabled: false
|
829
|
+
|
830
|
+
Metrics/PerceivedComplexity:
|
831
|
+
Enabled: false
|
832
|
+
|
615
833
|
Migration/DepartmentName:
|
616
834
|
Enabled: true
|
617
835
|
|
836
|
+
Naming/AccessorMethodName:
|
837
|
+
Enabled: false
|
838
|
+
|
839
|
+
Naming/AsciiIdentifiers:
|
840
|
+
Enabled: false
|
841
|
+
|
618
842
|
Naming/BinaryOperatorParameterName:
|
619
843
|
Enabled: true
|
620
844
|
|
@@ -631,14 +855,47 @@ Naming/ClassAndModuleCamelCase:
|
|
631
855
|
Naming/ConstantName:
|
632
856
|
Enabled: true
|
633
857
|
|
858
|
+
Naming/FileName:
|
859
|
+
Enabled: false
|
860
|
+
|
634
861
|
Naming/HeredocDelimiterCase:
|
635
862
|
Enabled: true
|
636
863
|
EnforcedStyle: uppercase
|
637
864
|
|
865
|
+
Naming/HeredocDelimiterNaming:
|
866
|
+
Enabled: false
|
867
|
+
|
868
|
+
Naming/InclusiveLanguage:
|
869
|
+
Enabled: false
|
870
|
+
|
871
|
+
Naming/MemoizedInstanceVariableName:
|
872
|
+
Enabled: false
|
873
|
+
|
874
|
+
Naming/MethodName:
|
875
|
+
Enabled: false
|
876
|
+
|
877
|
+
Naming/MethodParameterName:
|
878
|
+
Enabled: false
|
879
|
+
|
880
|
+
Naming/PredicateName:
|
881
|
+
Enabled: false
|
882
|
+
|
883
|
+
Naming/RescuedExceptionsVariableName:
|
884
|
+
Enabled: false
|
885
|
+
|
638
886
|
Naming/VariableName:
|
639
887
|
Enabled: true
|
640
888
|
EnforcedStyle: snake_case
|
641
889
|
|
890
|
+
Naming/VariableNumber:
|
891
|
+
Enabled: false
|
892
|
+
|
893
|
+
Performance/AncestorsInclude:
|
894
|
+
Enabled: false
|
895
|
+
|
896
|
+
Performance/ArraySemiInfiniteRangeSlice:
|
897
|
+
Enabled: false
|
898
|
+
|
642
899
|
Performance/BigDecimalWithNumericArgument:
|
643
900
|
Enabled: true
|
644
901
|
|
@@ -651,6 +908,15 @@ Performance/BlockGivenWithExplicitBlock:
|
|
651
908
|
Performance/Caller:
|
652
909
|
Enabled: true
|
653
910
|
|
911
|
+
Performance/CaseWhenSplat:
|
912
|
+
Enabled: false
|
913
|
+
|
914
|
+
Performance/Casecmp:
|
915
|
+
Enabled: false
|
916
|
+
|
917
|
+
Performance/ChainArrayAllocation:
|
918
|
+
Enabled: false
|
919
|
+
|
654
920
|
Performance/CollectionLiteralInLoop:
|
655
921
|
Enabled: false
|
656
922
|
|
@@ -690,10 +956,28 @@ Performance/InefficientHashSearch:
|
|
690
956
|
Enabled: true
|
691
957
|
Safe: false
|
692
958
|
|
959
|
+
Performance/IoReadlines:
|
960
|
+
Enabled: false
|
961
|
+
|
962
|
+
Performance/MapCompact:
|
963
|
+
Enabled: false
|
964
|
+
|
965
|
+
Performance/MethodObjectAsBlock:
|
966
|
+
Enabled: false
|
967
|
+
|
968
|
+
Performance/OpenStruct:
|
969
|
+
Enabled: false
|
970
|
+
|
693
971
|
Performance/RangeInclude:
|
694
972
|
Enabled: true
|
695
973
|
Safe: false
|
696
974
|
|
975
|
+
Performance/RedundantBlockCall:
|
976
|
+
Enabled: false
|
977
|
+
|
978
|
+
Performance/RedundantEqualityComparisonBlock:
|
979
|
+
Enabled: false
|
980
|
+
|
697
981
|
Performance/RedundantMatch:
|
698
982
|
Enabled: true
|
699
983
|
|
@@ -719,6 +1003,9 @@ Performance/ReverseEach:
|
|
719
1003
|
Performance/ReverseFirst:
|
720
1004
|
Enabled: true
|
721
1005
|
|
1006
|
+
Performance/SelectMap:
|
1007
|
+
Enabled: false
|
1008
|
+
|
722
1009
|
Performance/Size:
|
723
1010
|
Enabled: true
|
724
1011
|
|
@@ -731,9 +1018,18 @@ Performance/Squeeze:
|
|
731
1018
|
Performance/StartWith:
|
732
1019
|
Enabled: true
|
733
1020
|
|
1021
|
+
Performance/StringInclude:
|
1022
|
+
Enabled: false
|
1023
|
+
|
734
1024
|
Performance/StringReplacement:
|
735
1025
|
Enabled: true
|
736
1026
|
|
1027
|
+
Performance/Sum:
|
1028
|
+
Enabled: false
|
1029
|
+
|
1030
|
+
Performance/TimesMap:
|
1031
|
+
Enabled: false
|
1032
|
+
|
737
1033
|
Performance/UnfreezeString:
|
738
1034
|
Enabled: true
|
739
1035
|
|
@@ -748,6 +1044,9 @@ Security/JSONLoad:
|
|
748
1044
|
AutoCorrect: false
|
749
1045
|
SafeAutoCorrect: false
|
750
1046
|
|
1047
|
+
Security/MarshalLoad:
|
1048
|
+
Enabled: false
|
1049
|
+
|
751
1050
|
Security/Open:
|
752
1051
|
Enabled: true
|
753
1052
|
Safe: false
|
@@ -756,9 +1055,19 @@ Security/YAMLLoad:
|
|
756
1055
|
Enabled: true
|
757
1056
|
SafeAutoCorrect: false
|
758
1057
|
|
1058
|
+
Security/IoMethods:
|
1059
|
+
Enabled: false
|
1060
|
+
Safe: false
|
1061
|
+
|
759
1062
|
Standard/BlockSingleLineBraces:
|
760
1063
|
Enabled: true
|
761
1064
|
|
1065
|
+
Style/AccessModifierDeclarations:
|
1066
|
+
Enabled: false
|
1067
|
+
|
1068
|
+
Style/AccessorGrouping:
|
1069
|
+
Enabled: false
|
1070
|
+
|
762
1071
|
Style/Alias:
|
763
1072
|
Enabled: true
|
764
1073
|
EnforcedStyle: prefer_alias_method
|
@@ -770,12 +1079,21 @@ Style/ArgumentsForwarding:
|
|
770
1079
|
Enabled: true
|
771
1080
|
AllowOnlyRestArgument: true
|
772
1081
|
|
1082
|
+
Style/ArrayCoercion:
|
1083
|
+
Enabled: false
|
1084
|
+
|
773
1085
|
Style/ArrayJoin:
|
774
1086
|
Enabled: true
|
775
1087
|
|
1088
|
+
Style/AsciiComments:
|
1089
|
+
Enabled: false
|
1090
|
+
|
776
1091
|
Style/Attr:
|
777
1092
|
Enabled: true
|
778
1093
|
|
1094
|
+
Style/AutoResourceCleanup:
|
1095
|
+
Enabled: false
|
1096
|
+
|
779
1097
|
Style/BarePercentLiterals:
|
780
1098
|
Enabled: true
|
781
1099
|
EnforcedStyle: bare_percent
|
@@ -783,12 +1101,27 @@ Style/BarePercentLiterals:
|
|
783
1101
|
Style/BeginBlock:
|
784
1102
|
Enabled: true
|
785
1103
|
|
1104
|
+
Style/BisectedAttrAccessor:
|
1105
|
+
Enabled: false
|
1106
|
+
|
786
1107
|
Style/BlockComments:
|
787
1108
|
Enabled: true
|
788
1109
|
|
1110
|
+
Style/BlockDelimiters:
|
1111
|
+
Enabled: false
|
1112
|
+
|
1113
|
+
Style/CaseEquality:
|
1114
|
+
Enabled: false
|
1115
|
+
|
1116
|
+
Style/CaseLikeIf:
|
1117
|
+
Enabled: false
|
1118
|
+
|
789
1119
|
Style/CharacterLiteral:
|
790
1120
|
Enabled: true
|
791
1121
|
|
1122
|
+
Style/ClassAndModuleChildren:
|
1123
|
+
Enabled: false
|
1124
|
+
|
792
1125
|
Style/ClassCheck:
|
793
1126
|
Enabled: true
|
794
1127
|
EnforcedStyle: is_a?
|
@@ -799,19 +1132,37 @@ Style/ClassEqualityComparison:
|
|
799
1132
|
Style/ClassMethods:
|
800
1133
|
Enabled: true
|
801
1134
|
|
1135
|
+
Style/ClassMethodsDefinitions:
|
1136
|
+
Enabled: false
|
1137
|
+
|
1138
|
+
Style/ClassVars:
|
1139
|
+
Enabled: false
|
1140
|
+
|
1141
|
+
Style/CollectionCompact:
|
1142
|
+
Enabled: false
|
1143
|
+
|
1144
|
+
Style/CollectionMethods:
|
1145
|
+
Enabled: false
|
1146
|
+
|
802
1147
|
Style/ColonMethodCall:
|
803
1148
|
Enabled: true
|
804
1149
|
|
805
1150
|
Style/ColonMethodDefinition:
|
806
1151
|
Enabled: true
|
807
1152
|
|
1153
|
+
Style/CombinableLoops:
|
1154
|
+
Enabled: false
|
1155
|
+
|
808
1156
|
Style/CommandLiteral:
|
809
1157
|
Enabled: true
|
810
1158
|
EnforcedStyle: mixed
|
811
1159
|
AllowInnerBackticks: false
|
812
1160
|
|
1161
|
+
Style/CommentAnnotation:
|
1162
|
+
Enabled: false
|
1163
|
+
|
813
1164
|
Style/CommentedKeyword:
|
814
|
-
Enabled:
|
1165
|
+
Enabled: false
|
815
1166
|
|
816
1167
|
Style/ConditionalAssignment:
|
817
1168
|
Enabled: true
|
@@ -819,12 +1170,39 @@ Style/ConditionalAssignment:
|
|
819
1170
|
SingleLineConditionsOnly: true
|
820
1171
|
IncludeTernaryExpressions: true
|
821
1172
|
|
1173
|
+
Style/ConstantVisibility:
|
1174
|
+
Enabled: false
|
1175
|
+
|
1176
|
+
Style/Copyright:
|
1177
|
+
Enabled: false
|
1178
|
+
|
1179
|
+
Style/DateTime:
|
1180
|
+
Enabled: false
|
1181
|
+
|
822
1182
|
Style/DefWithParentheses:
|
823
1183
|
Enabled: true
|
824
1184
|
|
825
1185
|
Style/Dir:
|
826
1186
|
Enabled: true
|
827
1187
|
|
1188
|
+
Style/DisableCopsWithinSourceCodeDirective:
|
1189
|
+
Enabled: false
|
1190
|
+
|
1191
|
+
Style/DocumentDynamicEvalDefinition:
|
1192
|
+
Enabled: false
|
1193
|
+
|
1194
|
+
Style/Documentation:
|
1195
|
+
Enabled: false
|
1196
|
+
|
1197
|
+
Style/DocumentationMethod:
|
1198
|
+
Enabled: false
|
1199
|
+
|
1200
|
+
Style/DoubleCopDisableDirective:
|
1201
|
+
Enabled: false
|
1202
|
+
|
1203
|
+
Style/DoubleNegation:
|
1204
|
+
Enabled: false
|
1205
|
+
|
828
1206
|
Style/EachForSimpleLoop:
|
829
1207
|
Enabled: true
|
830
1208
|
|
@@ -858,13 +1236,40 @@ Style/EndBlock:
|
|
858
1236
|
Enabled: true
|
859
1237
|
AutoCorrect: true
|
860
1238
|
|
1239
|
+
Style/EndlessMethod:
|
1240
|
+
Enabled: false
|
1241
|
+
|
861
1242
|
Style/EvalWithLocation:
|
862
1243
|
Enabled: true
|
863
1244
|
|
1245
|
+
Style/EvenOdd:
|
1246
|
+
Enabled: false
|
1247
|
+
|
1248
|
+
Style/ExpandPathArguments:
|
1249
|
+
Enabled: false
|
1250
|
+
|
1251
|
+
Style/ExplicitBlockArgument:
|
1252
|
+
Enabled: false
|
1253
|
+
|
1254
|
+
Style/ExponentialNotation:
|
1255
|
+
Enabled: false
|
1256
|
+
|
1257
|
+
Style/FloatDivision:
|
1258
|
+
Enabled: false
|
1259
|
+
|
864
1260
|
Style/For:
|
865
1261
|
Enabled: true
|
866
1262
|
EnforcedStyle: each
|
867
1263
|
|
1264
|
+
Style/FormatString:
|
1265
|
+
Enabled: false
|
1266
|
+
|
1267
|
+
Style/FormatStringToken:
|
1268
|
+
Enabled: false
|
1269
|
+
|
1270
|
+
Style/FrozenStringLiteralComment:
|
1271
|
+
Enabled: false
|
1272
|
+
|
868
1273
|
Style/GlobalStdStream:
|
869
1274
|
Enabled: true
|
870
1275
|
|
@@ -872,22 +1277,43 @@ Style/GlobalVars:
|
|
872
1277
|
Enabled: true
|
873
1278
|
AllowedVariables: []
|
874
1279
|
|
1280
|
+
Style/GuardClause:
|
1281
|
+
Enabled: false
|
1282
|
+
|
1283
|
+
Style/HashAsLastArrayItem:
|
1284
|
+
Enabled: false
|
1285
|
+
|
875
1286
|
Style/HashConversion:
|
876
1287
|
Enabled: true
|
877
1288
|
|
1289
|
+
Style/HashEachMethods:
|
1290
|
+
Enabled: false
|
1291
|
+
|
878
1292
|
Style/HashExcept:
|
879
1293
|
Enabled: true
|
880
1294
|
|
1295
|
+
Style/HashLikeCase:
|
1296
|
+
Enabled: false
|
1297
|
+
|
881
1298
|
Style/HashSyntax:
|
882
1299
|
Enabled: true
|
883
1300
|
EnforcedStyle: ruby19_no_mixed_keys
|
884
1301
|
|
1302
|
+
Style/HashTransformKeys:
|
1303
|
+
Enabled: false
|
1304
|
+
|
1305
|
+
Style/HashTransformValues:
|
1306
|
+
Enabled: false
|
1307
|
+
|
885
1308
|
Style/IdenticalConditionalBranches:
|
886
1309
|
Enabled: true
|
887
1310
|
|
888
1311
|
Style/IfInsideElse:
|
889
1312
|
Enabled: true
|
890
1313
|
|
1314
|
+
Style/IfUnlessModifier:
|
1315
|
+
Enabled: false
|
1316
|
+
|
891
1317
|
Style/IfUnlessModifierOfIfUnless:
|
892
1318
|
Enabled: true
|
893
1319
|
|
@@ -897,12 +1323,30 @@ Style/IfWithBooleanLiteralBranches:
|
|
897
1323
|
Style/IfWithSemicolon:
|
898
1324
|
Enabled: true
|
899
1325
|
|
1326
|
+
Style/ImplicitRuntimeError:
|
1327
|
+
Enabled: false
|
1328
|
+
|
1329
|
+
Style/InPatternThen:
|
1330
|
+
Enabled: false
|
1331
|
+
|
900
1332
|
Style/InfiniteLoop:
|
901
1333
|
Enabled: true
|
902
1334
|
|
1335
|
+
Style/InlineComment:
|
1336
|
+
Enabled: false
|
1337
|
+
|
1338
|
+
Style/InverseMethods:
|
1339
|
+
Enabled: false
|
1340
|
+
|
1341
|
+
Style/IpAddresses:
|
1342
|
+
Enabled: false
|
1343
|
+
|
903
1344
|
Style/KeywordParametersOrder:
|
904
1345
|
Enabled: true
|
905
1346
|
|
1347
|
+
Style/Lambda:
|
1348
|
+
Enabled: false
|
1349
|
+
|
906
1350
|
Style/LambdaCall:
|
907
1351
|
Enabled: true
|
908
1352
|
EnforcedStyle: call
|
@@ -911,10 +1355,25 @@ Style/LineEndConcatenation:
|
|
911
1355
|
Enabled: true
|
912
1356
|
SafeAutoCorrect: false
|
913
1357
|
|
1358
|
+
Style/MethodCallWithArgsParentheses:
|
1359
|
+
Enabled: false
|
1360
|
+
|
914
1361
|
Style/MethodCallWithoutArgsParentheses:
|
915
1362
|
Enabled: true
|
916
1363
|
IgnoredMethods: []
|
917
1364
|
|
1365
|
+
Style/MethodCalledOnDoEndBlock:
|
1366
|
+
Enabled: false
|
1367
|
+
|
1368
|
+
Style/MethodDefParentheses:
|
1369
|
+
Enabled: false
|
1370
|
+
|
1371
|
+
Style/MinMax:
|
1372
|
+
Enabled: false
|
1373
|
+
|
1374
|
+
Style/MissingElse:
|
1375
|
+
Enabled: false
|
1376
|
+
|
918
1377
|
Style/MissingRespondToMissing:
|
919
1378
|
Enabled: true
|
920
1379
|
|
@@ -925,22 +1384,48 @@ Style/MixinGrouping:
|
|
925
1384
|
Style/MixinUsage:
|
926
1385
|
Enabled: true
|
927
1386
|
|
1387
|
+
Style/ModuleFunction:
|
1388
|
+
Enabled: false
|
1389
|
+
|
1390
|
+
Style/MultilineBlockChain:
|
1391
|
+
Enabled: false
|
1392
|
+
|
928
1393
|
Style/MultilineIfModifier:
|
929
1394
|
Enabled: true
|
930
1395
|
|
931
1396
|
Style/MultilineIfThen:
|
932
1397
|
Enabled: true
|
933
1398
|
|
1399
|
+
Style/MultilineInPatternThen:
|
1400
|
+
Enabled: false
|
1401
|
+
|
934
1402
|
Style/MultilineMemoization:
|
935
1403
|
Enabled: true
|
936
1404
|
EnforcedStyle: keyword
|
937
1405
|
|
1406
|
+
Style/MultilineMethodSignature:
|
1407
|
+
Enabled: false
|
1408
|
+
|
1409
|
+
Style/MultilineTernaryOperator:
|
1410
|
+
Enabled: false
|
1411
|
+
|
938
1412
|
Style/MultilineWhenThen:
|
939
1413
|
Enabled: true
|
940
1414
|
|
1415
|
+
Style/MultipleComparison:
|
1416
|
+
Enabled: false
|
1417
|
+
|
1418
|
+
Style/MutableConstant:
|
1419
|
+
Enabled: false
|
1420
|
+
|
941
1421
|
Style/NegatedIf:
|
942
|
-
Enabled:
|
943
|
-
|
1422
|
+
Enabled: false
|
1423
|
+
|
1424
|
+
Style/NegatedIfElseCondition:
|
1425
|
+
Enabled: false
|
1426
|
+
|
1427
|
+
Style/NegatedUnless:
|
1428
|
+
Enabled: false
|
944
1429
|
|
945
1430
|
Style/NegatedWhile:
|
946
1431
|
Enabled: true
|
@@ -972,6 +1457,9 @@ Style/NestedParenthesizedCalls:
|
|
972
1457
|
Style/NestedTernaryOperator:
|
973
1458
|
Enabled: true
|
974
1459
|
|
1460
|
+
Style/Next:
|
1461
|
+
Enabled: false
|
1462
|
+
|
975
1463
|
Style/NilComparison:
|
976
1464
|
Enabled: true
|
977
1465
|
EnforcedStyle: predicate
|
@@ -990,15 +1478,30 @@ Style/NumericLiteralPrefix:
|
|
990
1478
|
Enabled: true
|
991
1479
|
EnforcedOctalStyle: zero_with_o
|
992
1480
|
|
1481
|
+
Style/NumericLiterals:
|
1482
|
+
Enabled: false
|
1483
|
+
|
1484
|
+
Style/NumericPredicate:
|
1485
|
+
Enabled: false
|
1486
|
+
|
993
1487
|
Style/OneLineConditional:
|
994
1488
|
Enabled: true
|
995
1489
|
|
1490
|
+
Style/OptionHash:
|
1491
|
+
Enabled: false
|
1492
|
+
|
996
1493
|
Style/OptionalArguments:
|
997
1494
|
Enabled: true
|
998
1495
|
|
1496
|
+
Style/OptionalBooleanParameter:
|
1497
|
+
Enabled: false
|
1498
|
+
|
999
1499
|
Style/OrAssignment:
|
1000
1500
|
Enabled: true
|
1001
1501
|
|
1502
|
+
Style/ParallelAssignment:
|
1503
|
+
Enabled: false
|
1504
|
+
|
1002
1505
|
Style/ParenthesesAroundCondition:
|
1003
1506
|
Enabled: true
|
1004
1507
|
AllowSafeAssignment: true
|
@@ -1014,18 +1517,39 @@ Style/PercentLiteralDelimiters:
|
|
1014
1517
|
'%w': '[]'
|
1015
1518
|
'%W': '[]'
|
1016
1519
|
|
1520
|
+
Style/PercentQLiterals:
|
1521
|
+
Enabled: false
|
1522
|
+
|
1523
|
+
Style/PerlBackrefs:
|
1524
|
+
Enabled: false
|
1525
|
+
|
1526
|
+
Style/PreferredHashMethods:
|
1527
|
+
Enabled: false
|
1528
|
+
|
1017
1529
|
Style/Proc:
|
1018
1530
|
Enabled: true
|
1019
1531
|
|
1532
|
+
Style/QuotedSymbols:
|
1533
|
+
Enabled: false
|
1534
|
+
|
1535
|
+
Style/RaiseArgs:
|
1536
|
+
Enabled: false
|
1537
|
+
|
1020
1538
|
Style/RandomWithOffset:
|
1021
1539
|
Enabled: true
|
1022
1540
|
|
1541
|
+
Style/RedundantArgument:
|
1542
|
+
Enabled: false
|
1543
|
+
|
1023
1544
|
Style/RedundantAssignment:
|
1024
1545
|
Enabled: true
|
1025
1546
|
|
1026
1547
|
Style/RedundantBegin:
|
1027
1548
|
Enabled: true
|
1028
1549
|
|
1550
|
+
Style/RedundantCapitalW:
|
1551
|
+
Enabled: false
|
1552
|
+
|
1029
1553
|
Style/RedundantCondition:
|
1030
1554
|
Enabled: true
|
1031
1555
|
|
@@ -1066,12 +1590,21 @@ Style/RedundantReturn:
|
|
1066
1590
|
Style/RedundantSelf:
|
1067
1591
|
Enabled: true
|
1068
1592
|
|
1593
|
+
Style/RedundantSelfAssignment:
|
1594
|
+
Enabled: false
|
1595
|
+
|
1596
|
+
Style/RedundantSelfAssignmentBranch:
|
1597
|
+
Enabled: false
|
1598
|
+
|
1069
1599
|
Style/RedundantSort:
|
1070
1600
|
Enabled: true
|
1071
1601
|
|
1072
1602
|
Style/RedundantSortBy:
|
1073
1603
|
Enabled: true
|
1074
1604
|
|
1605
|
+
Style/RegexpLiteral:
|
1606
|
+
Enabled: false
|
1607
|
+
|
1075
1608
|
Style/RescueModifier:
|
1076
1609
|
Enabled: true
|
1077
1610
|
|
@@ -1079,6 +1612,9 @@ Style/RescueStandardError:
|
|
1079
1612
|
Enabled: true
|
1080
1613
|
EnforcedStyle: implicit
|
1081
1614
|
|
1615
|
+
Style/ReturnNil:
|
1616
|
+
Enabled: false
|
1617
|
+
|
1082
1618
|
Style/SafeNavigation:
|
1083
1619
|
Enabled: true
|
1084
1620
|
ConvertCodeThatCanStartToReturnNil: false
|
@@ -1099,6 +1635,18 @@ Style/Semicolon:
|
|
1099
1635
|
Enabled: true
|
1100
1636
|
AllowAsExpressionSeparator: false
|
1101
1637
|
|
1638
|
+
Style/Send:
|
1639
|
+
Enabled: false
|
1640
|
+
|
1641
|
+
Style/SignalException:
|
1642
|
+
Enabled: false
|
1643
|
+
|
1644
|
+
Style/SingleArgumentDig:
|
1645
|
+
Enabled: false
|
1646
|
+
|
1647
|
+
Style/SingleLineBlockParams:
|
1648
|
+
Enabled: false
|
1649
|
+
|
1102
1650
|
Style/SingleLineMethods:
|
1103
1651
|
Enabled: true
|
1104
1652
|
AllowIfMethodIsEmpty: false
|
@@ -1106,16 +1654,31 @@ Style/SingleLineMethods:
|
|
1106
1654
|
Style/SlicingWithRange:
|
1107
1655
|
Enabled: true
|
1108
1656
|
|
1657
|
+
Style/SoleNestedConditional:
|
1658
|
+
Enabled: false
|
1659
|
+
|
1660
|
+
Style/SpecialGlobalVars:
|
1661
|
+
Enabled: false
|
1662
|
+
|
1109
1663
|
Style/StabbyLambdaParentheses:
|
1110
1664
|
Enabled: true
|
1111
1665
|
EnforcedStyle: require_parentheses
|
1112
1666
|
|
1667
|
+
Style/StaticClass:
|
1668
|
+
Enabled: false
|
1669
|
+
|
1113
1670
|
Style/StderrPuts:
|
1114
1671
|
Enabled: true
|
1115
1672
|
|
1116
1673
|
Style/StringChars:
|
1117
1674
|
Enabled: true
|
1118
1675
|
|
1676
|
+
Style/StringConcatenation:
|
1677
|
+
Enabled: false
|
1678
|
+
|
1679
|
+
Style/StringHashKeys:
|
1680
|
+
Enabled: false
|
1681
|
+
|
1119
1682
|
Style/StringLiterals:
|
1120
1683
|
Enabled: true
|
1121
1684
|
EnforcedStyle: double_quotes
|
@@ -1125,17 +1688,35 @@ Style/StringLiteralsInInterpolation:
|
|
1125
1688
|
Enabled: true
|
1126
1689
|
EnforcedStyle: double_quotes
|
1127
1690
|
|
1691
|
+
Style/StringMethods:
|
1692
|
+
Enabled: false
|
1693
|
+
|
1128
1694
|
Style/Strip:
|
1129
1695
|
Enabled: true
|
1130
1696
|
|
1697
|
+
Style/StructInheritance:
|
1698
|
+
Enabled: false
|
1699
|
+
|
1700
|
+
Style/SwapValues:
|
1701
|
+
Enabled: false
|
1702
|
+
|
1703
|
+
Style/SymbolArray:
|
1704
|
+
Enabled: false
|
1705
|
+
|
1131
1706
|
Style/SymbolLiteral:
|
1132
1707
|
Enabled: true
|
1133
1708
|
|
1709
|
+
Style/SymbolProc:
|
1710
|
+
Enabled: false
|
1711
|
+
|
1134
1712
|
Style/TernaryParentheses:
|
1135
1713
|
Enabled: true
|
1136
1714
|
EnforcedStyle: require_no_parentheses
|
1137
1715
|
AllowSafeAssignment: true
|
1138
1716
|
|
1717
|
+
Style/TopLevelMethodDefinition:
|
1718
|
+
Enabled: false
|
1719
|
+
|
1139
1720
|
Style/TrailingBodyOnClass:
|
1140
1721
|
Enabled: true
|
1141
1722
|
|
@@ -1163,6 +1744,9 @@ Style/TrailingCommaInHashLiteral:
|
|
1163
1744
|
Style/TrailingMethodEndStatement:
|
1164
1745
|
Enabled: true
|
1165
1746
|
|
1747
|
+
Style/TrailingUnderscoreVariable:
|
1748
|
+
Enabled: false
|
1749
|
+
|
1166
1750
|
Style/TrivialAccessors:
|
1167
1751
|
Enabled: true
|
1168
1752
|
ExactNameMatch: true
|
@@ -1191,6 +1775,9 @@ Style/TrivialAccessors:
|
|
1191
1775
|
Style/UnlessElse:
|
1192
1776
|
Enabled: true
|
1193
1777
|
|
1778
|
+
Style/UnlessLogicalOperators:
|
1779
|
+
Enabled: false
|
1780
|
+
|
1194
1781
|
Style/UnpackFirst:
|
1195
1782
|
Enabled: true
|
1196
1783
|
|
@@ -1203,6 +1790,24 @@ Style/WhenThen:
|
|
1203
1790
|
Style/WhileUntilDo:
|
1204
1791
|
Enabled: true
|
1205
1792
|
|
1793
|
+
Style/WhileUntilModifier:
|
1794
|
+
Enabled: false
|
1795
|
+
|
1796
|
+
Style/WordArray:
|
1797
|
+
Enabled: false
|
1798
|
+
|
1206
1799
|
Style/YodaCondition:
|
1207
1800
|
Enabled: true
|
1208
1801
|
EnforcedStyle: forbid_for_all_comparison_operators
|
1802
|
+
|
1803
|
+
Style/ZeroLengthPredicate:
|
1804
|
+
Enabled: false
|
1805
|
+
|
1806
|
+
Style/NumberedParameters:
|
1807
|
+
Enabled: false
|
1808
|
+
|
1809
|
+
Style/NumberedParametersLimit:
|
1810
|
+
Enabled: false
|
1811
|
+
|
1812
|
+
Style/SelectByRegexp:
|
1813
|
+
Enabled: false
|