standard 0.0.36

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of standard might be problematic. Click here for more details.

data/config/base.yml ADDED
@@ -0,0 +1,1033 @@
1
+ AllCops:
2
+ # Prevent RuboCop from exploding when it finds an older-than-2.2 .ruby-version
3
+ TargetRubyVersion: 2.5
4
+ DisabledByDefault: true
5
+ Exclude: []
6
+
7
+ Bundler/DuplicatedGem:
8
+ Enabled: true
9
+
10
+ Bundler/InsecureProtocolSource:
11
+ Enabled: true
12
+
13
+ Gemspec/DuplicatedAssignment:
14
+ Enabled: true
15
+
16
+ Layout/AccessModifierIndentation:
17
+ Enabled: true
18
+
19
+ Layout/AlignArray:
20
+ Enabled: true
21
+
22
+ Layout/AlignHash:
23
+ Enabled: true
24
+ EnforcedHashRocketStyle: key
25
+ EnforcedColonStyle: key
26
+
27
+ Layout/AlignParameters:
28
+ Enabled: true
29
+ EnforcedStyle: with_fixed_indentation
30
+
31
+ Layout/BlockAlignment:
32
+ Enabled: true
33
+
34
+ Layout/BlockEndNewline:
35
+ Enabled: true
36
+
37
+ # Disabled because IndentOneStep can't be configured for one-liner cases. See:
38
+ # https://github.com/rubocop-hq/rubocop/issues/6447
39
+ # Layout/CaseIndentation:
40
+ # Enabled: true
41
+
42
+ Layout/ClosingHeredocIndentation:
43
+ Enabled: true
44
+
45
+ Layout/ClosingParenthesisIndentation:
46
+ Enabled: true
47
+
48
+ Layout/CommentIndentation:
49
+ Enabled: true
50
+
51
+ Layout/ConditionPosition:
52
+ Enabled: true
53
+
54
+ Layout/DefEndAlignment:
55
+ Enabled: true
56
+
57
+ Layout/DotPosition:
58
+ Enabled: true
59
+ EnforcedStyle: leading
60
+
61
+ Layout/ElseAlignment:
62
+ Enabled: true
63
+
64
+ Layout/EmptyComment:
65
+ Enabled: true
66
+
67
+ Layout/EmptyLineAfterMagicComment:
68
+ Enabled: true
69
+
70
+ Layout/EmptyLineBetweenDefs:
71
+ Enabled: true
72
+
73
+ Layout/EmptyLines:
74
+ Enabled: true
75
+
76
+ Layout/EmptyLinesAroundAccessModifier:
77
+ Enabled: true
78
+
79
+ Layout/EmptyLinesAroundArguments:
80
+ Enabled: true
81
+
82
+ Layout/EmptyLinesAroundBeginBody:
83
+ Enabled: true
84
+
85
+ Layout/EmptyLinesAroundBlockBody:
86
+ Enabled: true
87
+
88
+ Layout/EmptyLinesAroundClassBody:
89
+ Enabled: true
90
+
91
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
92
+ Enabled: true
93
+
94
+ Layout/EmptyLinesAroundMethodBody:
95
+ Enabled: true
96
+
97
+ Layout/EmptyLinesAroundModuleBody:
98
+ Enabled: true
99
+
100
+ Layout/EndAlignment:
101
+ Enabled: true
102
+ AutoCorrect: true
103
+ EnforcedStyleAlignWith: variable
104
+
105
+ Layout/EndOfLine:
106
+ Enabled: true
107
+
108
+ Layout/ExtraSpacing:
109
+ Enabled: true
110
+
111
+ Layout/FirstParameterIndentation:
112
+ Enabled: true
113
+ EnforcedStyle: consistent
114
+
115
+ Layout/IndentArray:
116
+ Enabled: true
117
+ EnforcedStyle: consistent
118
+
119
+ Layout/IndentAssignment:
120
+ Enabled: true
121
+
122
+ Layout/IndentHash:
123
+ Enabled: true
124
+ EnforcedStyle: consistent
125
+
126
+ Layout/IndentHeredoc:
127
+ Enabled: true
128
+
129
+ Layout/IndentationConsistency:
130
+ Enabled: true
131
+
132
+ Layout/IndentationWidth:
133
+ Enabled: true
134
+
135
+ Layout/InitialIndentation:
136
+ Enabled: true
137
+
138
+ Layout/LeadingBlankLines:
139
+ Enabled: true
140
+
141
+ Layout/LeadingCommentSpace:
142
+ Enabled: true
143
+
144
+ Layout/MultilineArrayBraceLayout:
145
+ Enabled: true
146
+
147
+ Layout/MultilineBlockLayout:
148
+ Enabled: true
149
+
150
+ Layout/MultilineHashBraceLayout:
151
+ Enabled: true
152
+
153
+ Layout/MultilineMethodCallBraceLayout:
154
+ Enabled: true
155
+
156
+ Layout/MultilineMethodCallIndentation:
157
+ Enabled: true
158
+ EnforcedStyle: indented
159
+
160
+ Layout/MultilineMethodDefinitionBraceLayout:
161
+ Enabled: true
162
+
163
+ Layout/MultilineOperationIndentation:
164
+ Enabled: true
165
+ EnforcedStyle: indented
166
+
167
+ Layout/RescueEnsureAlignment:
168
+ Enabled: true
169
+
170
+ Layout/SpaceAfterColon:
171
+ Enabled: true
172
+
173
+ Layout/SpaceAfterComma:
174
+ Enabled: true
175
+
176
+ Layout/SpaceAfterMethodName:
177
+ Enabled: true
178
+
179
+ Layout/SpaceAfterNot:
180
+ Enabled: true
181
+
182
+ Layout/SpaceAfterSemicolon:
183
+ Enabled: true
184
+
185
+ Layout/SpaceAroundBlockParameters:
186
+ Enabled: true
187
+
188
+ Layout/SpaceAroundEqualsInParameterDefault:
189
+ Enabled: true
190
+
191
+ Layout/SpaceAroundKeyword:
192
+ Enabled: true
193
+
194
+ Layout/SpaceAroundOperators:
195
+ Enabled: true
196
+
197
+ Layout/SpaceBeforeBlockBraces:
198
+ Enabled: true
199
+
200
+ Layout/SpaceBeforeComma:
201
+ Enabled: true
202
+
203
+ Layout/SpaceBeforeComment:
204
+ Enabled: true
205
+
206
+ Layout/SpaceBeforeFirstArg:
207
+ Enabled: true
208
+
209
+ Layout/SpaceBeforeSemicolon:
210
+ Enabled: true
211
+
212
+ Layout/SpaceInLambdaLiteral:
213
+ Enabled: true
214
+
215
+ Layout/SpaceInsideArrayLiteralBrackets:
216
+ Enabled: true
217
+
218
+ Layout/SpaceInsideArrayPercentLiteral:
219
+ Enabled: true
220
+
221
+ # Disabled without this:
222
+ # http://github.com/rubocop-hq/rubocop/issues/6446
223
+ # Layout/SpaceInsideBlockBraces:
224
+ # Enabled: false
225
+
226
+ Layout/SpaceInsideHashLiteralBraces:
227
+ Enabled: true
228
+ EnforcedStyle: no_space
229
+
230
+ Layout/SpaceInsideParens:
231
+ Enabled: true
232
+
233
+ Layout/SpaceInsidePercentLiteralDelimiters:
234
+ Enabled: true
235
+
236
+ Layout/SpaceInsideRangeLiteral:
237
+ Enabled: true
238
+
239
+ Layout/SpaceInsideReferenceBrackets:
240
+ Enabled: true
241
+
242
+ Layout/SpaceInsideStringInterpolation:
243
+ Enabled: true
244
+
245
+ Layout/Tab:
246
+ Enabled: true
247
+
248
+ Layout/TrailingBlankLines:
249
+ Enabled: true
250
+
251
+ Layout/TrailingWhitespace:
252
+ Enabled: true
253
+
254
+ Lint/AmbiguousBlockAssociation:
255
+ Enabled: true
256
+
257
+ Lint/AmbiguousOperator:
258
+ Enabled: true
259
+
260
+ Lint/AmbiguousRegexpLiteral:
261
+ Enabled: true
262
+
263
+ Lint/AssignmentInCondition:
264
+ Enabled: true
265
+
266
+ Lint/BigDecimalNew:
267
+ Enabled: true
268
+
269
+ Lint/BooleanSymbol:
270
+ Enabled: true
271
+
272
+ Lint/CircularArgumentReference:
273
+ Enabled: true
274
+
275
+ Lint/Debugger:
276
+ Enabled: true
277
+
278
+ Lint/DeprecatedClassMethods:
279
+ Enabled: true
280
+
281
+ Lint/DuplicateCaseCondition:
282
+ Enabled: true
283
+
284
+ Lint/DuplicateMethods:
285
+ Enabled: true
286
+
287
+ Lint/DuplicatedKey:
288
+ Enabled: true
289
+
290
+ Lint/EachWithObjectArgument:
291
+ Enabled: true
292
+
293
+ Lint/ElseLayout:
294
+ Enabled: true
295
+
296
+ Lint/EmptyEnsure:
297
+ Enabled: true
298
+
299
+ Lint/EmptyExpression:
300
+ Enabled: true
301
+
302
+ Lint/EmptyInterpolation:
303
+ Enabled: true
304
+
305
+ Lint/EmptyWhen:
306
+ Enabled: true
307
+
308
+ Lint/EndInMethod:
309
+ Enabled: true
310
+
311
+ Lint/EnsureReturn:
312
+ Enabled: true
313
+
314
+ Lint/ErbNewArguments:
315
+ Enabled: true
316
+
317
+ Lint/FlipFlop:
318
+ Enabled: true
319
+
320
+ Lint/FloatOutOfRange:
321
+ Enabled: true
322
+
323
+ Lint/FormatParameterMismatch:
324
+ Enabled: true
325
+
326
+ Lint/ImplicitStringConcatenation:
327
+ Enabled: true
328
+
329
+ Lint/IneffectiveAccessModifier:
330
+ Enabled: true
331
+
332
+ Lint/InheritException:
333
+ Enabled: true
334
+
335
+ Lint/InterpolationCheck:
336
+ Enabled: true
337
+
338
+ Lint/LiteralAsCondition:
339
+ Enabled: true
340
+
341
+ Lint/LiteralInInterpolation:
342
+ Enabled: true
343
+
344
+ Lint/Loop:
345
+ Enabled: true
346
+
347
+ Lint/MissingCopEnableDirective:
348
+ Enabled: true
349
+
350
+ Lint/MultipleCompare:
351
+ Enabled: true
352
+
353
+ Lint/NestedMethodDefinition:
354
+ Enabled: true
355
+
356
+ Lint/NestedPercentLiteral:
357
+ Enabled: true
358
+
359
+ Lint/NextWithoutAccumulator:
360
+ Enabled: true
361
+
362
+ Lint/NonLocalExitFromIterator:
363
+ Enabled: true
364
+
365
+ Lint/OrderedMagicComments:
366
+ Enabled: true
367
+
368
+ Lint/ParenthesesAsGroupedExpression:
369
+ Enabled: true
370
+
371
+ Lint/PercentSymbolArray:
372
+ Enabled: true
373
+
374
+ Lint/RandOne:
375
+ Enabled: true
376
+
377
+ Lint/RedundantWithIndex:
378
+ Enabled: true
379
+
380
+ Lint/RedundantWithObject:
381
+ Enabled: true
382
+
383
+ Lint/RegexpAsCondition:
384
+ Enabled: true
385
+
386
+ Lint/RequireParentheses:
387
+ Enabled: true
388
+
389
+ Lint/RescueException:
390
+ Enabled: true
391
+
392
+ Lint/RescueType:
393
+ Enabled: true
394
+
395
+ Lint/ReturnInVoidContext:
396
+ Enabled: true
397
+
398
+ Lint/SafeNavigationChain:
399
+ Enabled: true
400
+
401
+ Lint/SafeNavigationConsistency:
402
+ Enabled: true
403
+
404
+ Lint/ShadowedArgument:
405
+ Enabled: true
406
+
407
+ Lint/ShadowedException:
408
+ Enabled: true
409
+
410
+ Lint/ShadowingOuterLocalVariable:
411
+ Enabled: true
412
+
413
+ Lint/StringConversionInInterpolation:
414
+ Enabled: true
415
+
416
+ Lint/Syntax:
417
+ Enabled: true
418
+
419
+ Lint/UnderscorePrefixedVariableName:
420
+ Enabled: true
421
+
422
+ Lint/UnifiedInteger:
423
+ Enabled: true
424
+
425
+ Lint/UnneededRequireStatement:
426
+ Enabled: true
427
+
428
+ Lint/UnneededSplatExpansion:
429
+ Enabled: true
430
+
431
+ Lint/UnreachableCode:
432
+ Enabled: true
433
+
434
+ Lint/UriEscapeUnescape:
435
+ Enabled: true
436
+
437
+ Lint/UriRegexp:
438
+ Enabled: true
439
+
440
+ Lint/UselessAssignment:
441
+ Enabled: true
442
+
443
+ Lint/UselessComparison:
444
+ Enabled: true
445
+
446
+ Lint/UselessElseWithoutRescue:
447
+ Enabled: true
448
+
449
+ Lint/UselessSetterCall:
450
+ Enabled: true
451
+
452
+ Lint/Void:
453
+ Enabled: true
454
+
455
+ Naming/AccessorMethodName:
456
+ Enabled: true
457
+
458
+ Naming/AsciiIdentifiers:
459
+ Enabled: true
460
+
461
+ Naming/BinaryOperatorParameterName:
462
+ Enabled: true
463
+
464
+ Naming/ClassAndModuleCamelCase:
465
+ Enabled: true
466
+
467
+ Naming/ConstantName:
468
+ Enabled: true
469
+
470
+ Naming/HeredocDelimiterCase:
471
+ Enabled: true
472
+
473
+ Naming/MethodName:
474
+ Enabled: true
475
+
476
+ Naming/UncommunicativeBlockParamName:
477
+ Enabled: true
478
+
479
+ Naming/VariableName:
480
+ Enabled: true
481
+
482
+ Performance/Caller:
483
+ Enabled: true
484
+
485
+ Performance/CompareWithBlock:
486
+ Enabled: true
487
+
488
+ Performance/Count:
489
+ Enabled: true
490
+
491
+ Performance/Detect:
492
+ Enabled: true
493
+
494
+ Performance/DoubleStartEndWith:
495
+ Enabled: true
496
+
497
+ Performance/EndWith:
498
+ Enabled: true
499
+
500
+ Performance/FixedSize:
501
+ Enabled: true
502
+
503
+ Performance/FlatMap:
504
+ Enabled: true
505
+
506
+ Performance/InefficientHashSearch:
507
+ Enabled: true
508
+
509
+ Performance/LstripRstrip:
510
+ Enabled: true
511
+
512
+ Performance/RangeInclude:
513
+ Enabled: true
514
+
515
+ Performance/RedundantBlockCall:
516
+ Enabled: true
517
+
518
+ Performance/RedundantMatch:
519
+ Enabled: true
520
+
521
+ Performance/RedundantMerge:
522
+ Enabled: true
523
+
524
+ Performance/RedundantSortBy:
525
+ Enabled: true
526
+
527
+ Performance/RegexpMatch:
528
+ Enabled: true
529
+
530
+ Performance/ReverseEach:
531
+ Enabled: true
532
+
533
+ Performance/Sample:
534
+ Enabled: true
535
+
536
+ Performance/Size:
537
+ Enabled: true
538
+
539
+ Performance/StartWith:
540
+ Enabled: true
541
+
542
+ Performance/StringReplacement:
543
+ Enabled: true
544
+
545
+ Performance/UnfreezeString:
546
+ Enabled: true
547
+
548
+ Performance/UnneededSort:
549
+ Enabled: true
550
+
551
+ Performance/UriDefaultParser:
552
+ Enabled: true
553
+
554
+ Rails/ActionFilter:
555
+ Enabled: true
556
+
557
+ Rails/ActiveRecordAliases:
558
+ Enabled: true
559
+
560
+ Rails/ActiveSupportAliases:
561
+ Enabled: true
562
+
563
+ Rails/ApplicationJob:
564
+ Enabled: true
565
+
566
+ Rails/ApplicationRecord:
567
+ Enabled: true
568
+
569
+ Rails/AssertNot:
570
+ Enabled: true
571
+
572
+ Rails/Blank:
573
+ Enabled: true
574
+
575
+ Rails/BulkChangeTable:
576
+ Enabled: true
577
+
578
+ Rails/CreateTableWithTimestamps:
579
+ Enabled: true
580
+
581
+ Rails/Date:
582
+ Enabled: true
583
+
584
+ Rails/Delegate:
585
+ Enabled: true
586
+
587
+ Rails/DelegateAllowBlank:
588
+ Enabled: true
589
+
590
+ Rails/DynamicFindBy:
591
+ Enabled: true
592
+
593
+ Rails/EnumUniqueness:
594
+ Enabled: true
595
+
596
+ Rails/EnvironmentComparison:
597
+ Enabled: true
598
+
599
+ Rails/Exit:
600
+ Enabled: true
601
+
602
+ Rails/FilePath:
603
+ Enabled: true
604
+
605
+ Rails/FindBy:
606
+ Enabled: true
607
+
608
+ Rails/FindEach:
609
+ Enabled: true
610
+
611
+ Rails/HasAndBelongsToMany:
612
+ Enabled: true
613
+
614
+ Rails/HasManyOrHasOneDependent:
615
+ Enabled: true
616
+
617
+ Rails/HttpPositionalArguments:
618
+ Enabled: true
619
+
620
+ Rails/HttpStatus:
621
+ Enabled: true
622
+
623
+ Rails/InverseOf:
624
+ Enabled: true
625
+
626
+ Rails/LexicallyScopedActionFilter:
627
+ Enabled: true
628
+
629
+ Rails/NotNullColumn:
630
+ Enabled: true
631
+
632
+ Rails/Output:
633
+ Enabled: true
634
+
635
+ Rails/OutputSafety:
636
+ Enabled: true
637
+
638
+ Rails/PluralizationGrammar:
639
+ Enabled: true
640
+
641
+ Rails/Presence:
642
+ Enabled: true
643
+
644
+ Rails/Present:
645
+ Enabled: true
646
+
647
+ Rails/ReadWriteAttribute:
648
+ Enabled: true
649
+
650
+ Rails/RedundantReceiverInWithOptions:
651
+ Enabled: true
652
+
653
+ Rails/RefuteMethods:
654
+ Enabled: true
655
+
656
+ Rails/RelativeDateConstant:
657
+ Enabled: true
658
+
659
+ Rails/RequestReferer:
660
+ Enabled: true
661
+
662
+ Rails/ReversibleMigration:
663
+ Enabled: true
664
+
665
+ Rails/SafeNavigation:
666
+ Enabled: true
667
+
668
+ Rails/ScopeArgs:
669
+ Enabled: true
670
+
671
+ Rails/TimeZone:
672
+ Enabled: true
673
+
674
+ Rails/UniqBeforePluck:
675
+ Enabled: true
676
+
677
+ Rails/Validation:
678
+ Enabled: true
679
+
680
+ Security/Eval:
681
+ Enabled: true
682
+
683
+ Security/JSONLoad:
684
+ Enabled: true
685
+
686
+ Security/Open:
687
+ Enabled: true
688
+
689
+ Security/YAMLLoad:
690
+ Enabled: true
691
+
692
+
693
+ Standard/SemanticBlocks:
694
+ ProceduralMethods:
695
+ - benchmark
696
+ - bm
697
+ - bmbm
698
+ - tap
699
+ # Enumerable
700
+ - cycle
701
+ - each
702
+ - each_cons
703
+ - each_entry
704
+ - each_slice
705
+ - each_with_index
706
+ # Rails
707
+ - transaction
708
+ FunctionalMethods:
709
+ - let
710
+ - let!
711
+ - subject
712
+ - watch
713
+ - Given
714
+ - Given!
715
+ - Invariant
716
+ - Then
717
+ - And
718
+ IgnoredMethods:
719
+ - lambda
720
+ - proc
721
+ - describe
722
+ - it
723
+ - When
724
+
725
+ Style/Alias:
726
+ Enabled: true
727
+
728
+ Style/AndOr:
729
+ Enabled: true
730
+
731
+ Style/ArrayJoin:
732
+ Enabled: true
733
+
734
+ Style/Attr:
735
+ Enabled: true
736
+
737
+ Style/BarePercentLiterals:
738
+ Enabled: true
739
+
740
+ Style/BeginBlock:
741
+ Enabled: true
742
+
743
+ Style/BlockComments:
744
+ Enabled: true
745
+
746
+ Style/CharacterLiteral:
747
+ Enabled: true
748
+
749
+ Style/ClassCheck:
750
+ Enabled: true
751
+
752
+ Style/ClassMethods:
753
+ Enabled: true
754
+
755
+ Style/ColonMethodCall:
756
+ Enabled: true
757
+
758
+ Style/ColonMethodDefinition:
759
+ Enabled: true
760
+
761
+ Style/CommandLiteral:
762
+ Enabled: true
763
+
764
+ Style/CommentedKeyword:
765
+ Enabled: true
766
+
767
+ Style/ConditionalAssignment:
768
+ Enabled: true
769
+
770
+ Style/DefWithParentheses:
771
+ Enabled: true
772
+
773
+ Style/Dir:
774
+ Enabled: true
775
+
776
+ Style/EachForSimpleLoop:
777
+ Enabled: true
778
+
779
+ Style/EachWithObject:
780
+ Enabled: true
781
+
782
+ Style/EmptyBlockParameter:
783
+ Enabled: true
784
+
785
+ Style/EmptyCaseCondition:
786
+ Enabled: true
787
+
788
+ Style/EmptyElse:
789
+ Enabled: true
790
+
791
+ Style/EmptyLambdaParameter:
792
+ Enabled: true
793
+
794
+ Style/EmptyLiteral:
795
+ Enabled: true
796
+
797
+ Style/EmptyMethod:
798
+ Enabled: true
799
+ EnforcedStyle: expanded
800
+
801
+ Style/Encoding:
802
+ Enabled: true
803
+
804
+ Style/EndBlock:
805
+ Enabled: true
806
+
807
+ Style/EvalWithLocation:
808
+ Enabled: true
809
+
810
+ Style/For:
811
+ Enabled: true
812
+
813
+ Style/GlobalVars:
814
+ Enabled: true
815
+
816
+ Style/HashSyntax:
817
+ Enabled: true
818
+ EnforcedStyle: ruby19_no_mixed_keys
819
+
820
+ Style/IdenticalConditionalBranches:
821
+ Enabled: true
822
+
823
+ Style/IfInsideElse:
824
+ Enabled: true
825
+
826
+ Style/IfUnlessModifierOfIfUnless:
827
+ Enabled: true
828
+
829
+ Style/IfWithSemicolon:
830
+ Enabled: true
831
+
832
+ Style/InfiniteLoop:
833
+ Enabled: true
834
+
835
+ Style/LambdaCall:
836
+ Enabled: true
837
+
838
+ Style/LineEndConcatenation:
839
+ Enabled: true
840
+
841
+ Style/MethodCallWithoutArgsParentheses:
842
+ Enabled: true
843
+
844
+ Style/MethodMissingSuper:
845
+ Enabled: true
846
+
847
+ Style/MissingRespondToMissing:
848
+ Enabled: true
849
+
850
+ Style/MixinGrouping:
851
+ Enabled: true
852
+
853
+ Style/MixinUsage:
854
+ Enabled: true
855
+
856
+ Style/MultilineIfModifier:
857
+ Enabled: true
858
+
859
+ Style/MultilineIfThen:
860
+ Enabled: true
861
+
862
+ Style/MultilineMemoization:
863
+ Enabled: true
864
+
865
+ Style/NegatedIf:
866
+ Enabled: true
867
+
868
+ Style/NegatedWhile:
869
+ Enabled: true
870
+
871
+ Style/NestedModifier:
872
+ Enabled: true
873
+
874
+ Style/NestedParenthesizedCalls:
875
+ Enabled: true
876
+
877
+ Style/NestedTernaryOperator:
878
+ Enabled: true
879
+
880
+ Style/NilComparison:
881
+ Enabled: true
882
+
883
+ Style/NonNilCheck:
884
+ Enabled: true
885
+
886
+ Style/Not:
887
+ Enabled: true
888
+
889
+ Style/NumericLiteralPrefix:
890
+ Enabled: true
891
+
892
+ Style/OneLineConditional:
893
+ Enabled: true
894
+
895
+ Style/OptionalArguments:
896
+ Enabled: true
897
+
898
+ Style/OrAssignment:
899
+ Enabled: true
900
+
901
+ Style/ParenthesesAroundCondition:
902
+ Enabled: true
903
+
904
+ Style/PercentLiteralDelimiters:
905
+ Enabled: true
906
+
907
+ Style/PercentQLiterals:
908
+ Enabled: true
909
+
910
+ Style/PreferredHashMethods:
911
+ Enabled: true
912
+
913
+ Style/Proc:
914
+ Enabled: true
915
+
916
+ Style/RandomWithOffset:
917
+ Enabled: true
918
+
919
+ Style/RedundantBegin:
920
+ Enabled: true
921
+
922
+ Style/RedundantConditional:
923
+ Enabled: true
924
+
925
+ Style/RedundantException:
926
+ Enabled: true
927
+
928
+ Style/RedundantFreeze:
929
+ Enabled: true
930
+
931
+ Style/RedundantParentheses:
932
+ Enabled: true
933
+
934
+ Style/RedundantReturn:
935
+ Enabled: true
936
+
937
+ Style/RedundantSelf:
938
+ Enabled: true
939
+
940
+ Style/RescueModifier:
941
+ Enabled: true
942
+
943
+ Style/RescueStandardError:
944
+ Enabled: true
945
+ EnforcedStyle: implicit
946
+
947
+ Style/SafeNavigation:
948
+ Enabled: true
949
+
950
+ Style/SelfAssignment:
951
+ Enabled: true
952
+
953
+ Style/Semicolon:
954
+ Enabled: true
955
+
956
+ Style/SingleLineMethods:
957
+ Enabled: true
958
+
959
+ Style/StabbyLambdaParentheses:
960
+ Enabled: true
961
+
962
+ Style/StderrPuts:
963
+ Enabled: true
964
+
965
+ Style/StringLiterals:
966
+ Enabled: true
967
+ EnforcedStyle: double_quotes
968
+
969
+ Style/StringLiteralsInInterpolation:
970
+ Enabled: true
971
+ EnforcedStyle: double_quotes
972
+
973
+ Style/SymbolLiteral:
974
+ Enabled: true
975
+
976
+ Style/TernaryParentheses:
977
+ Enabled: true
978
+
979
+ Style/TrailingBodyOnClass:
980
+ Enabled: true
981
+
982
+ Style/TrailingBodyOnMethodDefinition:
983
+ Enabled: true
984
+
985
+ Style/TrailingBodyOnModule:
986
+ Enabled: true
987
+
988
+ Style/TrailingCommaInArrayLiteral:
989
+ Enabled: true
990
+ EnforcedStyleForMultiline: consistent_comma
991
+
992
+ Style/TrailingCommaInHashLiteral:
993
+ Enabled: true
994
+ EnforcedStyleForMultiline: consistent_comma
995
+
996
+ Style/TrailingMethodEndStatement:
997
+ Enabled: true
998
+
999
+ Style/TrivialAccessors:
1000
+ Enabled: true
1001
+
1002
+ Style/UnlessElse:
1003
+ Enabled: true
1004
+
1005
+ Style/UnneededCapitalW:
1006
+ Enabled: true
1007
+
1008
+ Style/UnneededCondition:
1009
+ Enabled: true
1010
+
1011
+ Style/UnneededInterpolation:
1012
+ Enabled: true
1013
+
1014
+ Style/UnneededPercentQ:
1015
+ Enabled: true
1016
+
1017
+ Style/UnpackFirst:
1018
+ Enabled: true
1019
+
1020
+ Style/VariableInterpolation:
1021
+ Enabled: true
1022
+
1023
+ Style/WhenThen:
1024
+ Enabled: true
1025
+
1026
+ Style/WhileUntilDo:
1027
+ Enabled: true
1028
+
1029
+ Style/WhileUntilModifier:
1030
+ Enabled: true
1031
+
1032
+ Style/YodaCondition:
1033
+ Enabled: true