standard 0.0.34

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