standard 0.0.17

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