standard 0.0.16

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,1078 @@
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/Casecmp:
498
+ Enabled: true
499
+
500
+ Performance/CompareWithBlock:
501
+ Enabled: true
502
+
503
+ Performance/Count:
504
+ Enabled: true
505
+
506
+ Performance/Detect:
507
+ Enabled: true
508
+
509
+ Performance/DoubleStartEndWith:
510
+ Enabled: true
511
+
512
+ Performance/EndWith:
513
+ Enabled: true
514
+
515
+ Performance/FixedSize:
516
+ Enabled: true
517
+
518
+ Performance/FlatMap:
519
+ Enabled: true
520
+
521
+ Performance/InefficientHashSearch:
522
+ Enabled: true
523
+
524
+ Performance/LstripRstrip:
525
+ Enabled: true
526
+
527
+ Performance/RangeInclude:
528
+ Enabled: true
529
+
530
+ Performance/RedundantBlockCall:
531
+ Enabled: true
532
+
533
+ Performance/RedundantMatch:
534
+ Enabled: true
535
+
536
+ Performance/RedundantMerge:
537
+ Enabled: true
538
+
539
+ Performance/RedundantSortBy:
540
+ Enabled: true
541
+
542
+ Performance/RegexpMatch:
543
+ Enabled: true
544
+
545
+ Performance/ReverseEach:
546
+ Enabled: true
547
+
548
+ Performance/Sample:
549
+ Enabled: true
550
+
551
+ Performance/Size:
552
+ Enabled: true
553
+
554
+ Performance/StartWith:
555
+ Enabled: true
556
+
557
+ Performance/StringReplacement:
558
+ Enabled: true
559
+
560
+ Performance/UnfreezeString:
561
+ Enabled: true
562
+
563
+ Performance/UnneededSort:
564
+ Enabled: true
565
+
566
+ Performance/UriDefaultParser:
567
+ Enabled: true
568
+
569
+ Rails/ActionFilter:
570
+ Enabled: true
571
+
572
+ Rails/ActiveRecordAliases:
573
+ Enabled: true
574
+
575
+ Rails/ActiveSupportAliases:
576
+ Enabled: true
577
+
578
+ Rails/ApplicationJob:
579
+ Enabled: true
580
+
581
+ Rails/ApplicationRecord:
582
+ Enabled: true
583
+
584
+ Rails/AssertNot:
585
+ Enabled: true
586
+
587
+ Rails/Blank:
588
+ Enabled: true
589
+
590
+ Rails/BulkChangeTable:
591
+ Enabled: true
592
+
593
+ Rails/CreateTableWithTimestamps:
594
+ Enabled: true
595
+
596
+ Rails/Date:
597
+ Enabled: true
598
+
599
+ Rails/Delegate:
600
+ Enabled: true
601
+
602
+ Rails/DelegateAllowBlank:
603
+ Enabled: true
604
+
605
+ Rails/DynamicFindBy:
606
+ Enabled: true
607
+
608
+ Rails/EnumUniqueness:
609
+ Enabled: true
610
+
611
+ Rails/EnvironmentComparison:
612
+ Enabled: true
613
+
614
+ Rails/Exit:
615
+ Enabled: true
616
+
617
+ Rails/FilePath:
618
+ Enabled: true
619
+
620
+ Rails/FindBy:
621
+ Enabled: true
622
+
623
+ Rails/FindEach:
624
+ Enabled: true
625
+
626
+ Rails/HasAndBelongsToMany:
627
+ Enabled: true
628
+
629
+ Rails/HasManyOrHasOneDependent:
630
+ Enabled: true
631
+
632
+ Rails/HttpPositionalArguments:
633
+ Enabled: true
634
+
635
+ Rails/HttpStatus:
636
+ Enabled: true
637
+
638
+ Rails/InverseOf:
639
+ Enabled: true
640
+
641
+ Rails/LexicallyScopedActionFilter:
642
+ Enabled: true
643
+
644
+ Rails/NotNullColumn:
645
+ Enabled: true
646
+
647
+ Rails/Output:
648
+ Enabled: true
649
+
650
+ Rails/OutputSafety:
651
+ Enabled: true
652
+
653
+ Rails/PluralizationGrammar:
654
+ Enabled: true
655
+
656
+ Rails/Presence:
657
+ Enabled: true
658
+
659
+ Rails/Present:
660
+ Enabled: true
661
+
662
+ Rails/ReadWriteAttribute:
663
+ Enabled: true
664
+
665
+ Rails/RedundantReceiverInWithOptions:
666
+ Enabled: true
667
+
668
+ Rails/RefuteMethods:
669
+ Enabled: true
670
+
671
+ Rails/RelativeDateConstant:
672
+ Enabled: true
673
+
674
+ Rails/RequestReferer:
675
+ Enabled: true
676
+
677
+ Rails/ReversibleMigration:
678
+ Enabled: true
679
+
680
+ Rails/SafeNavigation:
681
+ Enabled: true
682
+
683
+ Rails/ScopeArgs:
684
+ Enabled: true
685
+
686
+ Rails/SkipsModelValidations:
687
+ Enabled: true
688
+
689
+ Rails/TimeZone:
690
+ Enabled: true
691
+
692
+ Rails/UniqBeforePluck:
693
+ Enabled: true
694
+
695
+ Rails/UnknownEnv:
696
+ Enabled: true
697
+
698
+ Rails/Validation:
699
+ Enabled: true
700
+
701
+ Security/Eval:
702
+ Enabled: true
703
+
704
+ Security/JSONLoad:
705
+ Enabled: true
706
+
707
+ Security/Open:
708
+ Enabled: true
709
+
710
+ Security/YAMLLoad:
711
+ Enabled: true
712
+
713
+
714
+ Standard/SemanticBlocks:
715
+ ProceduralMethods:
716
+ - benchmark
717
+ - bm
718
+ - bmbm
719
+ - tap
720
+ # Enumerable
721
+ - cycle
722
+ - each
723
+ - each_cons
724
+ - each_entry
725
+ - each_slice
726
+ - each_with_index
727
+ # Rails
728
+ - transaction
729
+ FunctionalMethods:
730
+ - let
731
+ - let!
732
+ - subject
733
+ - watch
734
+ - Given
735
+ - Given!
736
+ - Invariant
737
+ - Then
738
+ - And
739
+ IgnoredMethods:
740
+ - lambda
741
+ - proc
742
+ - describe
743
+ - it
744
+ - When
745
+
746
+ Style/Alias:
747
+ Enabled: true
748
+
749
+ Style/AndOr:
750
+ Enabled: true
751
+
752
+ Style/ArrayJoin:
753
+ Enabled: true
754
+
755
+ Style/Attr:
756
+ Enabled: true
757
+
758
+ Style/BarePercentLiterals:
759
+ Enabled: true
760
+
761
+ Style/BeginBlock:
762
+ Enabled: true
763
+
764
+ Style/BlockComments:
765
+ Enabled: true
766
+
767
+ Style/CharacterLiteral:
768
+ Enabled: true
769
+
770
+ Style/ClassCheck:
771
+ Enabled: true
772
+
773
+ Style/ClassMethods:
774
+ Enabled: true
775
+
776
+ Style/ClassVars:
777
+ Enabled: true
778
+
779
+ Style/ColonMethodCall:
780
+ Enabled: true
781
+
782
+ Style/ColonMethodDefinition:
783
+ Enabled: true
784
+
785
+ Style/CommandLiteral:
786
+ Enabled: true
787
+
788
+ Style/CommentedKeyword:
789
+ Enabled: true
790
+
791
+ Style/ConditionalAssignment:
792
+ Enabled: true
793
+
794
+ Style/DateTime:
795
+ Enabled: true
796
+
797
+ Style/DefWithParentheses:
798
+ Enabled: true
799
+
800
+ Style/Dir:
801
+ Enabled: true
802
+
803
+ Style/EachForSimpleLoop:
804
+ Enabled: true
805
+
806
+ Style/EachWithObject:
807
+ Enabled: true
808
+
809
+ Style/EmptyBlockParameter:
810
+ Enabled: true
811
+
812
+ Style/EmptyCaseCondition:
813
+ Enabled: true
814
+
815
+ Style/EmptyElse:
816
+ Enabled: true
817
+
818
+ Style/EmptyLambdaParameter:
819
+ Enabled: true
820
+
821
+ Style/EmptyLiteral:
822
+ Enabled: true
823
+
824
+ Style/EmptyMethod:
825
+ Enabled: true
826
+ EnforcedStyle: expanded
827
+
828
+ Style/Encoding:
829
+ Enabled: true
830
+
831
+ Style/EndBlock:
832
+ Enabled: true
833
+
834
+ Style/EvalWithLocation:
835
+ Enabled: true
836
+
837
+ Style/EvenOdd:
838
+ Enabled: true
839
+
840
+ Style/FlipFlop:
841
+ Enabled: true
842
+
843
+ Style/For:
844
+ Enabled: true
845
+
846
+ Style/FormatString:
847
+ Enabled: true
848
+
849
+ Style/GlobalVars:
850
+ Enabled: true
851
+
852
+ Style/HashSyntax:
853
+ Enabled: true
854
+ EnforcedStyle: ruby19_no_mixed_keys
855
+
856
+ Style/IdenticalConditionalBranches:
857
+ Enabled: true
858
+
859
+ Style/IfInsideElse:
860
+ Enabled: true
861
+
862
+ Style/IfUnlessModifierOfIfUnless:
863
+ Enabled: true
864
+
865
+ Style/IfWithSemicolon:
866
+ Enabled: true
867
+
868
+ Style/InfiniteLoop:
869
+ Enabled: true
870
+
871
+ Style/LambdaCall:
872
+ Enabled: true
873
+
874
+ Style/LineEndConcatenation:
875
+ Enabled: true
876
+
877
+ Style/MethodCallWithoutArgsParentheses:
878
+ Enabled: true
879
+
880
+ Style/MethodMissingSuper:
881
+ Enabled: true
882
+
883
+ Style/MinMax:
884
+ Enabled: true
885
+
886
+ Style/MissingRespondToMissing:
887
+ Enabled: true
888
+
889
+ Style/MixinGrouping:
890
+ Enabled: true
891
+
892
+ Style/MixinUsage:
893
+ Enabled: true
894
+
895
+ Style/MultilineIfModifier:
896
+ Enabled: true
897
+
898
+ Style/MultilineIfThen:
899
+ Enabled: true
900
+
901
+ Style/MultilineMemoization:
902
+ Enabled: true
903
+
904
+ Style/NegatedIf:
905
+ Enabled: true
906
+
907
+ Style/NegatedWhile:
908
+ Enabled: true
909
+
910
+ Style/NestedModifier:
911
+ Enabled: true
912
+
913
+ Style/NestedParenthesizedCalls:
914
+ Enabled: true
915
+
916
+ Style/NestedTernaryOperator:
917
+ Enabled: true
918
+
919
+ Style/Next:
920
+ Enabled: true
921
+
922
+ Style/NilComparison:
923
+ Enabled: true
924
+
925
+ Style/NonNilCheck:
926
+ Enabled: true
927
+
928
+ Style/Not:
929
+ Enabled: true
930
+
931
+ Style/NumericLiteralPrefix:
932
+ Enabled: true
933
+
934
+ Style/OneLineConditional:
935
+ Enabled: true
936
+
937
+ Style/OptionalArguments:
938
+ Enabled: true
939
+
940
+ Style/OrAssignment:
941
+ Enabled: true
942
+
943
+ Style/ParenthesesAroundCondition:
944
+ Enabled: true
945
+
946
+ Style/PercentLiteralDelimiters:
947
+ Enabled: true
948
+
949
+ Style/PercentQLiterals:
950
+ Enabled: true
951
+
952
+ Style/PreferredHashMethods:
953
+ Enabled: true
954
+
955
+ Style/Proc:
956
+ Enabled: true
957
+
958
+ Style/RandomWithOffset:
959
+ Enabled: true
960
+
961
+ Style/RedundantBegin:
962
+ Enabled: true
963
+
964
+ Style/RedundantConditional:
965
+ Enabled: true
966
+
967
+ Style/RedundantException:
968
+ Enabled: true
969
+
970
+ Style/RedundantFreeze:
971
+ Enabled: true
972
+
973
+ Style/RedundantParentheses:
974
+ Enabled: true
975
+
976
+ Style/RedundantReturn:
977
+ Enabled: true
978
+
979
+ Style/RedundantSelf:
980
+ Enabled: true
981
+
982
+ Style/RescueModifier:
983
+ Enabled: true
984
+
985
+ Style/RescueStandardError:
986
+ Enabled: true
987
+ EnforcedStyle: implicit
988
+
989
+ Style/SafeNavigation:
990
+ Enabled: true
991
+
992
+ Style/SelfAssignment:
993
+ Enabled: true
994
+
995
+ Style/Semicolon:
996
+ Enabled: true
997
+
998
+ Style/SingleLineMethods:
999
+ Enabled: true
1000
+
1001
+ Style/SpecialGlobalVars:
1002
+ Enabled: true
1003
+
1004
+ Style/StabbyLambdaParentheses:
1005
+ Enabled: true
1006
+
1007
+ Style/StderrPuts:
1008
+ Enabled: true
1009
+
1010
+ Style/StringLiterals:
1011
+ Enabled: true
1012
+ EnforcedStyle: double_quotes
1013
+
1014
+ Style/StringLiteralsInInterpolation:
1015
+ Enabled: true
1016
+ EnforcedStyle: double_quotes
1017
+
1018
+ Style/SymbolLiteral:
1019
+ Enabled: true
1020
+
1021
+ Style/TernaryParentheses:
1022
+ Enabled: true
1023
+
1024
+ Style/TrailingBodyOnClass:
1025
+ Enabled: true
1026
+
1027
+ Style/TrailingBodyOnMethodDefinition:
1028
+ Enabled: true
1029
+
1030
+ Style/TrailingBodyOnModule:
1031
+ Enabled: true
1032
+
1033
+ Style/TrailingCommaInArrayLiteral:
1034
+ Enabled: true
1035
+ EnforcedStyleForMultiline: consistent_comma
1036
+
1037
+ Style/TrailingCommaInHashLiteral:
1038
+ Enabled: true
1039
+ EnforcedStyleForMultiline: consistent_comma
1040
+
1041
+ Style/TrailingMethodEndStatement:
1042
+ Enabled: true
1043
+
1044
+ Style/TrivialAccessors:
1045
+ Enabled: true
1046
+
1047
+ Style/UnlessElse:
1048
+ Enabled: true
1049
+
1050
+ Style/UnneededCapitalW:
1051
+ Enabled: true
1052
+
1053
+ Style/UnneededCondition:
1054
+ Enabled: true
1055
+
1056
+ Style/UnneededInterpolation:
1057
+ Enabled: true
1058
+
1059
+ Style/UnneededPercentQ:
1060
+ Enabled: true
1061
+
1062
+ Style/UnpackFirst:
1063
+ Enabled: true
1064
+
1065
+ Style/VariableInterpolation:
1066
+ Enabled: true
1067
+
1068
+ Style/WhenThen:
1069
+ Enabled: true
1070
+
1071
+ Style/WhileUntilDo:
1072
+ Enabled: true
1073
+
1074
+ Style/WhileUntilModifier:
1075
+ Enabled: true
1076
+
1077
+ Style/YodaCondition:
1078
+ Enabled: true