standard 0.0.18

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