standard 0.0.31

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