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