lintf 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1791 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ ActiveSupportExtensionsEnabled: true
4
+ Exclude:
5
+ - '**/log/**/*'
6
+ - '**/node_modules/**/*'
7
+ - '**/public/**/*'
8
+ - '**/storage/**/*'
9
+ - '**/tmp/**/*'
10
+ - '**/vendor/**/*'
11
+ - '**/db/schema.rb'
12
+
13
+ Bundler/DuplicatedGem:
14
+ Enabled: true
15
+
16
+ Bundler/DuplicatedGroup:
17
+ Enabled: true
18
+
19
+ Bundler/GemComment:
20
+ Enabled: true
21
+ OnlyFor:
22
+ - github
23
+ - restrictive_version_specifiers
24
+
25
+ Bundler/GemFilename:
26
+ Enabled: true
27
+
28
+ Bundler/GemVersion:
29
+ Enabled: false
30
+
31
+ Bundler/InsecureProtocolSource:
32
+ Enabled: true
33
+
34
+ Bundler/OrderedGems:
35
+ Enabled: true
36
+
37
+ Gemspec/AddRuntimeDependency:
38
+ Enabled: true
39
+
40
+ Gemspec/DependencyVersion:
41
+ Enabled: true
42
+
43
+ Gemspec/DeprecatedAttributeAssignment:
44
+ Enabled: true
45
+
46
+ Gemspec/DevelopmentDependencies:
47
+ Enabled: true
48
+
49
+ Gemspec/DuplicatedAssignment:
50
+ Enabled: true
51
+
52
+ Gemspec/OrderedDependencies:
53
+ Enabled: true
54
+
55
+ Gemspec/RequireMFA:
56
+ Enabled: true
57
+
58
+ Gemspec/RequiredRubyVersion:
59
+ Enabled: true
60
+
61
+ Gemspec/RubyVersionGlobalsUsage:
62
+ Enabled: true
63
+
64
+ Layout/AccessModifierIndentation:
65
+ Enabled: true
66
+
67
+ Layout/ArgumentAlignment:
68
+ Enabled: true
69
+
70
+ Layout/ArrayAlignment:
71
+ Enabled: true
72
+
73
+ Layout/AssignmentIndentation:
74
+ Enabled: true
75
+
76
+ Layout/BeginEndAlignment:
77
+ Enabled: true
78
+
79
+ Layout/BlockAlignment:
80
+ Enabled: true
81
+
82
+ Layout/BlockEndNewline:
83
+ Enabled: true
84
+
85
+ Layout/CaseIndentation:
86
+ Enabled: true
87
+
88
+ Layout/ClassStructure:
89
+ Enabled: true
90
+ ExpectedOrder:
91
+ - module_inclusion
92
+ - constants
93
+ - association
94
+ - public_attribute_macros
95
+ - public_delegate
96
+ - macros
97
+ - public_class_methods
98
+ - initializer
99
+ - public_methods
100
+ - protected_attribute_macros
101
+ - protected_methods
102
+ - private_attribute_macros
103
+ - private_delegate
104
+ - private_methods
105
+ Categories:
106
+ association:
107
+ - has_many
108
+ - has_one
109
+ attribute_macros:
110
+ - attr_accessor
111
+ - attr_reader
112
+ - attr_writer
113
+ macros:
114
+ - validates
115
+ - validate
116
+ module_inclusion:
117
+ - include
118
+ - prepend
119
+ - extend
120
+
121
+ Layout/ClosingHeredocIndentation:
122
+ Enabled: true
123
+
124
+ Layout/ClosingParenthesisIndentation:
125
+ Enabled: true
126
+
127
+ Layout/CommentIndentation:
128
+ Enabled: true
129
+
130
+ Layout/ConditionPosition:
131
+ Enabled: true
132
+
133
+ Layout/DefEndAlignment:
134
+ Enabled: true
135
+
136
+ Layout/DotPosition:
137
+ Enabled: true
138
+
139
+ Layout/ElseAlignment:
140
+ Enabled: true
141
+
142
+ Layout/EmptyComment:
143
+ Enabled: true
144
+
145
+ Layout/EmptyLineAfterGuardClause:
146
+ Enabled: true
147
+
148
+ Layout/EmptyLineAfterMagicComment:
149
+ Enabled: true
150
+
151
+ Layout/EmptyLineAfterMultilineCondition:
152
+ Enabled: false
153
+
154
+ Layout/EmptyLineBetweenDefs:
155
+ Enabled: true
156
+
157
+ Layout/EmptyLines:
158
+ Enabled: true
159
+
160
+ Layout/EmptyLinesAroundAccessModifier:
161
+ Enabled: true
162
+
163
+ Layout/EmptyLinesAroundArguments:
164
+ Enabled: true
165
+
166
+ Layout/EmptyLinesAroundAttributeAccessor:
167
+ Enabled: true
168
+ AllowedMethods:
169
+ - delegate
170
+
171
+ Layout/EmptyLinesAroundBeginBody:
172
+ Enabled: true
173
+
174
+ Layout/EmptyLinesAroundBlockBody:
175
+ Enabled: true
176
+
177
+ Layout/EmptyLinesAroundClassBody:
178
+ Enabled: true
179
+
180
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
181
+ Enabled: true
182
+
183
+ Layout/EmptyLinesAroundMethodBody:
184
+ Enabled: true
185
+
186
+ Layout/EmptyLinesAroundModuleBody:
187
+ Enabled: true
188
+
189
+ Layout/EndAlignment:
190
+ Enabled: true
191
+ EnforcedStyleAlignWith: variable
192
+
193
+ Layout/EndOfLine:
194
+ Enabled: true
195
+ EnforcedStyle: lf
196
+
197
+ Layout/ExtraSpacing:
198
+ Enabled: true
199
+
200
+ Layout/FirstArgumentIndentation:
201
+ Enabled: true
202
+
203
+ Layout/FirstArrayElementIndentation:
204
+ Enabled: true
205
+ EnforcedStyle: consistent
206
+
207
+ Layout/FirstArrayElementLineBreak:
208
+ Enabled: true
209
+ AllowMultilineFinalElement: true
210
+
211
+ Layout/FirstHashElementIndentation:
212
+ Enabled: true
213
+ EnforcedStyle: consistent
214
+
215
+ Layout/FirstHashElementLineBreak:
216
+ Enabled: true
217
+ AllowMultilineFinalElement: true
218
+
219
+ Layout/FirstMethodArgumentLineBreak:
220
+ Enabled: true
221
+ AllowMultilineFinalElement: true
222
+
223
+ Layout/FirstMethodParameterLineBreak:
224
+ Enabled: true
225
+ AllowMultilineFinalElement: true
226
+
227
+ Layout/FirstParameterIndentation:
228
+ Enabled: true
229
+
230
+ Layout/HashAlignment:
231
+ Enabled: true
232
+
233
+ Layout/HeredocArgumentClosingParenthesis:
234
+ Enabled: false
235
+
236
+ Layout/HeredocIndentation:
237
+ Enabled: true
238
+
239
+ Layout/IndentationConsistency:
240
+ Enabled: true
241
+
242
+ Layout/IndentationStyle:
243
+ Enabled: true
244
+
245
+ Layout/IndentationWidth:
246
+ Enabled: true
247
+ Width: 2
248
+
249
+ Layout/InitialIndentation:
250
+ Enabled: true
251
+
252
+ Layout/LeadingCommentSpace:
253
+ Enabled: true
254
+
255
+ Layout/LeadingEmptyLines:
256
+ Enabled: true
257
+
258
+ Layout/LineContinuationLeadingSpace:
259
+ Enabled: true
260
+
261
+ Layout/LineContinuationSpacing:
262
+ Enabled: true
263
+
264
+ Layout/LineEndStringConcatenationIndentation:
265
+ Enabled: true
266
+
267
+ Layout/LineLength:
268
+ Enabled: true
269
+ Max: 80
270
+
271
+ Layout/MultilineArrayBraceLayout:
272
+ Enabled: true
273
+
274
+ Layout/MultilineArrayLineBreaks:
275
+ Enabled: false
276
+
277
+ Layout/MultilineAssignmentLayout:
278
+ Enabled: true
279
+ EnforcedStyle: same_line
280
+
281
+ Layout/MultilineBlockLayout:
282
+ Enabled: true
283
+
284
+ Layout/MultilineHashBraceLayout:
285
+ Enabled: true
286
+
287
+ Layout/MultilineHashKeyLineBreaks:
288
+ Enabled: false
289
+
290
+ Layout/MultilineMethodArgumentLineBreaks:
291
+ Enabled: false
292
+
293
+ Layout/MultilineMethodCallBraceLayout:
294
+ Enabled: true
295
+
296
+ Layout/MultilineMethodCallIndentation:
297
+ Enabled: true
298
+ EnforcedStyle: indented
299
+
300
+ Layout/MultilineMethodDefinitionBraceLayout:
301
+ Enabled: true
302
+
303
+ Layout/MultilineMethodParameterLineBreaks:
304
+ Enabled: false
305
+
306
+ Layout/MultilineOperationIndentation:
307
+ Enabled: true
308
+
309
+ Layout/ParameterAlignment:
310
+ Enabled: true
311
+
312
+ Layout/RedundantLineBreak:
313
+ Enabled: true
314
+ InspectBlocks: true
315
+
316
+ Layout/RescueEnsureAlignment:
317
+ Enabled: true
318
+
319
+ Layout/SingleLineBlockChain:
320
+ Enabled: false
321
+
322
+ Layout/SpaceAfterColon:
323
+ Enabled: true
324
+
325
+ Layout/SpaceAfterComma:
326
+ Enabled: true
327
+
328
+ Layout/SpaceAfterMethodName:
329
+ Enabled: true
330
+
331
+ Layout/SpaceAfterNot:
332
+ Enabled: true
333
+
334
+ Layout/SpaceAfterSemicolon:
335
+ Enabled: true
336
+
337
+ Layout/SpaceAroundBlockParameters:
338
+ Enabled: true
339
+
340
+ Layout/SpaceAroundEqualsInParameterDefault:
341
+ Enabled: true
342
+
343
+ Layout/SpaceAroundKeyword:
344
+ Enabled: true
345
+
346
+ Layout/SpaceAroundMethodCallOperator:
347
+ Enabled: true
348
+
349
+ Layout/SpaceAroundOperators:
350
+ Enabled: true
351
+ AllowForAlignment: false
352
+ EnforcedStyleForExponentOperator: space
353
+
354
+ Layout/SpaceBeforeBlockBraces:
355
+ Enabled: true
356
+
357
+ Layout/SpaceBeforeBrackets:
358
+ Enabled: true
359
+
360
+ Layout/SpaceBeforeComma:
361
+ Enabled: true
362
+
363
+ Layout/SpaceBeforeComment:
364
+ Enabled: true
365
+
366
+ Layout/SpaceBeforeFirstArg:
367
+ Enabled: true
368
+
369
+ Layout/SpaceBeforeSemicolon:
370
+ Enabled: true
371
+
372
+ Layout/SpaceInLambdaLiteral:
373
+ Enabled: true
374
+
375
+ Layout/SpaceInsideArrayLiteralBrackets:
376
+ Enabled: true
377
+
378
+ Layout/SpaceInsideArrayPercentLiteral:
379
+ Enabled: true
380
+
381
+ Layout/SpaceInsideBlockBraces:
382
+ Enabled: true
383
+
384
+ Layout/SpaceInsideHashLiteralBraces:
385
+ Enabled: true
386
+
387
+ Layout/SpaceInsideParens:
388
+ Enabled: true
389
+
390
+ Layout/SpaceInsidePercentLiteralDelimiters:
391
+ Enabled: true
392
+
393
+ Layout/SpaceInsideRangeLiteral:
394
+ Enabled: true
395
+
396
+ Layout/SpaceInsideReferenceBrackets:
397
+ Enabled: true
398
+
399
+ Layout/SpaceInsideStringInterpolation:
400
+ Enabled: true
401
+
402
+ Layout/TrailingEmptyLines:
403
+ Enabled: true
404
+
405
+ Layout/TrailingWhitespace:
406
+ Enabled: true
407
+
408
+ Lint/AmbiguousAssignment:
409
+ Enabled: true
410
+
411
+ Lint/AmbiguousBlockAssociation:
412
+ Enabled: true
413
+ AllowedPatterns:
414
+ - change
415
+
416
+ Lint/AmbiguousOperator:
417
+ Enabled: true
418
+
419
+ Lint/AmbiguousOperatorPrecedence:
420
+ Enabled: true
421
+
422
+ Lint/AmbiguousRange:
423
+ Enabled: true
424
+
425
+ Lint/AmbiguousRegexpLiteral:
426
+ Enabled: true
427
+
428
+ Lint/AssignmentInCondition:
429
+ Enabled: true
430
+
431
+ Lint/BigDecimalNew:
432
+ Enabled: true
433
+
434
+ Lint/BinaryOperatorWithIdenticalOperands:
435
+ Enabled: true
436
+
437
+ Lint/BooleanSymbol:
438
+ Enabled: true
439
+
440
+ Lint/CircularArgumentReference:
441
+ Enabled: true
442
+
443
+ Lint/ConstantDefinitionInBlock:
444
+ Enabled: true
445
+
446
+ Lint/ConstantOverwrittenInRescue:
447
+ Enabled: true
448
+
449
+ Lint/ConstantResolution:
450
+ Enabled: false
451
+
452
+ Lint/Debugger:
453
+ Enabled: true
454
+
455
+ Lint/DeprecatedClassMethods:
456
+ Enabled: true
457
+
458
+ Lint/DeprecatedConstants:
459
+ Enabled: true
460
+
461
+ Lint/DeprecatedOpenSSLConstant:
462
+ Enabled: true
463
+
464
+ Lint/DisjunctiveAssignmentInConstructor:
465
+ Enabled: true
466
+
467
+ Lint/DuplicateBranch:
468
+ Enabled: true
469
+
470
+ Lint/DuplicateCaseCondition:
471
+ Enabled: true
472
+
473
+ Lint/DuplicateElsifCondition:
474
+ Enabled: true
475
+
476
+ Lint/DuplicateHashKey:
477
+ Enabled: true
478
+
479
+ Lint/DuplicateMagicComment:
480
+ Enabled: true
481
+
482
+ Lint/DuplicateMatchPattern:
483
+ Enabled: true
484
+
485
+ Lint/DuplicateMethods:
486
+ Enabled: true
487
+
488
+ Lint/DuplicateRegexpCharacterClassElement:
489
+ Enabled: true
490
+
491
+ Lint/DuplicateRequire:
492
+ Enabled: true
493
+
494
+ Lint/DuplicateRescueException:
495
+ Enabled: true
496
+
497
+ Lint/DuplicateSetElement:
498
+ Enabled: true
499
+
500
+ Lint/EachWithObjectArgument:
501
+ Enabled: true
502
+
503
+ Lint/ElseLayout:
504
+ Enabled: true
505
+
506
+ Lint/EmptyBlock:
507
+ Enabled: true
508
+
509
+ Lint/EmptyClass:
510
+ Enabled: true
511
+ AllowComments: true
512
+
513
+ Lint/EmptyConditionalBody:
514
+ Enabled: true
515
+
516
+ Lint/EmptyEnsure:
517
+ Enabled: true
518
+
519
+ Lint/EmptyExpression:
520
+ Enabled: true
521
+
522
+ Lint/EmptyFile:
523
+ Enabled: true
524
+
525
+ Lint/EmptyInPattern:
526
+ Enabled: true
527
+
528
+ Lint/EmptyInterpolation:
529
+ Enabled: true
530
+
531
+ Lint/EmptyWhen:
532
+ Enabled: true
533
+
534
+ Lint/EnsureReturn:
535
+ Enabled: true
536
+
537
+ Lint/ErbNewArguments:
538
+ Enabled: true
539
+
540
+ Lint/FlipFlop:
541
+ Enabled: true
542
+
543
+ Lint/FloatComparison:
544
+ Enabled: true
545
+
546
+ Lint/FloatOutOfRange:
547
+ Enabled: true
548
+
549
+ Lint/FormatParameterMismatch:
550
+ Enabled: true
551
+
552
+ Lint/HashCompareByIdentity:
553
+ Enabled: true
554
+
555
+ Lint/HeredocMethodCallPosition:
556
+ Enabled: true
557
+
558
+ Lint/IdentityComparison:
559
+ Enabled: true
560
+
561
+ Lint/ImplicitStringConcatenation:
562
+ Enabled: true
563
+
564
+ Lint/IncompatibleIoSelectWithFiberScheduler:
565
+ Enabled: true
566
+
567
+ Lint/IneffectiveAccessModifier:
568
+ Enabled: true
569
+
570
+ Lint/InheritException:
571
+ Enabled: true
572
+
573
+ Lint/InterpolationCheck:
574
+ Enabled: true
575
+
576
+ Lint/ItWithoutArgumentsInBlock:
577
+ Enabled: true
578
+
579
+ Lint/LambdaWithoutLiteralBlock:
580
+ Enabled: true
581
+
582
+ Lint/LiteralAsCondition:
583
+ Enabled: true
584
+
585
+ Lint/LiteralAssignmentInCondition:
586
+ Enabled: true
587
+
588
+ Lint/LiteralInInterpolation:
589
+ Enabled: true
590
+
591
+ Lint/Loop:
592
+ Enabled: true
593
+
594
+ Lint/MissingCopEnableDirective:
595
+ Enabled: true
596
+
597
+ Lint/MissingSuper:
598
+ Enabled: true
599
+
600
+ Lint/MixedCaseRange:
601
+ Enabled: true
602
+
603
+ Lint/MixedRegexpCaptureTypes:
604
+ Enabled: true
605
+
606
+ Lint/MultipleComparison:
607
+ Enabled: true
608
+
609
+ Lint/NestedMethodDefinition:
610
+ Enabled: true
611
+
612
+ Lint/NestedPercentLiteral:
613
+ Enabled: true
614
+
615
+ Lint/NextWithoutAccumulator:
616
+ Enabled: true
617
+
618
+ Lint/NoReturnInBeginEndBlocks:
619
+ Enabled: true
620
+
621
+ Lint/NonAtomicFileOperation:
622
+ Enabled: true
623
+
624
+ Lint/NonLocalExitFromIterator:
625
+ Enabled: true
626
+
627
+ Lint/NumberConversion:
628
+ Enabled: false
629
+
630
+ Lint/NumberedParameterAssignment:
631
+ Enabled: true
632
+
633
+ Lint/OrAssignmentToConstant:
634
+ Enabled: true
635
+
636
+ Lint/OrderedMagicComments:
637
+ Enabled: true
638
+
639
+ Lint/OutOfRangeRegexpRef:
640
+ Enabled: true
641
+
642
+ Lint/ParenthesesAsGroupedExpression:
643
+ Enabled: true
644
+
645
+ Lint/PercentStringArray:
646
+ Enabled: true
647
+
648
+ Lint/PercentSymbolArray:
649
+ Enabled: true
650
+
651
+ Lint/RaiseException:
652
+ Enabled: true
653
+
654
+ Lint/RandOne:
655
+ Enabled: true
656
+
657
+ Lint/RedundantCopDisableDirective:
658
+ Enabled: true
659
+
660
+ Lint/RedundantCopEnableDirective:
661
+ Enabled: true
662
+
663
+ Lint/RedundantDirGlobSort:
664
+ Enabled: true
665
+
666
+ Lint/RedundantRegexpQuantifiers:
667
+ Enabled: true
668
+
669
+ Lint/RedundantRequireStatement:
670
+ Enabled: true
671
+
672
+ Lint/RedundantSafeNavigation:
673
+ Enabled: true
674
+
675
+ Lint/RedundantSplatExpansion:
676
+ Enabled: true
677
+
678
+ Lint/RedundantStringCoercion:
679
+ Enabled: true
680
+
681
+ Lint/RedundantWithIndex:
682
+ Enabled: true
683
+
684
+ Lint/RedundantWithObject:
685
+ Enabled: true
686
+
687
+ Lint/RefinementImportMethods:
688
+ Enabled: true
689
+
690
+ Lint/RegexpAsCondition:
691
+ Enabled: true
692
+
693
+ Lint/RequireParentheses:
694
+ Enabled: true
695
+
696
+ Lint/RequireRangeParentheses:
697
+ Enabled: true
698
+
699
+ Lint/RequireRelativeSelfPath:
700
+ Enabled: true
701
+
702
+ Lint/RescueException:
703
+ Enabled: true
704
+
705
+ Lint/RescueType:
706
+ Enabled: true
707
+
708
+ Lint/ReturnInVoidContext:
709
+ Enabled: true
710
+
711
+ Lint/SafeNavigationChain:
712
+ Enabled: true
713
+
714
+ Lint/SafeNavigationConsistency:
715
+ Enabled: true
716
+
717
+ Lint/SafeNavigationWithEmpty:
718
+ Enabled: true
719
+
720
+ Lint/ScriptPermission:
721
+ Enabled: true
722
+
723
+ Lint/SelfAssignment:
724
+ Enabled: true
725
+
726
+ Lint/SendWithMixinArgument:
727
+ Enabled: true
728
+
729
+ Lint/ShadowedArgument:
730
+ Enabled: true
731
+
732
+ Lint/ShadowedException:
733
+ Enabled: true
734
+
735
+ Lint/ShadowingOuterLocalVariable:
736
+ Enabled: true
737
+
738
+ Lint/StructNewOverride:
739
+ Enabled: true
740
+
741
+ Lint/SuppressedException:
742
+ Enabled: true
743
+
744
+ Lint/SymbolConversion:
745
+ Enabled: true
746
+
747
+ Lint/Syntax:
748
+ Enabled: true
749
+
750
+ Lint/ToEnumArguments:
751
+ Enabled: true
752
+
753
+ Lint/ToJSON:
754
+ Enabled: true
755
+
756
+ Lint/TopLevelReturnWithArgument:
757
+ Enabled: true
758
+
759
+ Lint/TrailingCommaInAttributeDeclaration:
760
+ Enabled: true
761
+
762
+ Lint/TripleQuotes:
763
+ Enabled: true
764
+
765
+ Lint/UnderscorePrefixedVariableName:
766
+ Enabled: true
767
+
768
+ Lint/UnescapedBracketInRegexp:
769
+ Enabled: true
770
+
771
+ Lint/UnexpectedBlockArity:
772
+ Enabled: true
773
+
774
+ Lint/UnifiedInteger:
775
+ Enabled: true
776
+
777
+ Lint/UnmodifiedReduceAccumulator:
778
+ Enabled: true
779
+
780
+ Lint/UnreachableCode:
781
+ Enabled: true
782
+
783
+ Lint/UnreachableLoop:
784
+ Enabled: true
785
+
786
+ Lint/UnusedBlockArgument:
787
+ Enabled: true
788
+ IgnoreEmptyBlocks: false
789
+
790
+ Lint/UnusedMethodArgument:
791
+ Enabled: true
792
+
793
+ Lint/UriEscapeUnescape:
794
+ Enabled: true
795
+
796
+ Lint/UriRegexp:
797
+ Enabled: true
798
+
799
+ Lint/UselessAccessModifier:
800
+ Enabled: true
801
+
802
+ Lint/UselessAssignment:
803
+ Enabled: true
804
+
805
+ Lint/UselessMethodDefinition:
806
+ Enabled: true
807
+
808
+ Lint/UselessNumericOperation:
809
+ Enabled: true
810
+
811
+ Lint/UselessRescue:
812
+ Enabled: true
813
+
814
+ Lint/UselessRuby2Keywords:
815
+ Enabled: true
816
+
817
+ Lint/UselessSetterCall:
818
+ Enabled: true
819
+
820
+ Lint/UselessTimes:
821
+ Enabled: true
822
+
823
+ Lint/Void:
824
+ Enabled: true
825
+
826
+ Metrics/AbcSize:
827
+ Enabled: true
828
+ CountRepeatedAttributes: false
829
+
830
+ Metrics/BlockLength:
831
+ Enabled: true
832
+ CountAsOne:
833
+ - array
834
+ - hash
835
+ - heredoc
836
+ Exclude:
837
+ - '**/config/environments/**/*'
838
+ - '**/config/routes.rb'
839
+ - spec/**/*
840
+
841
+ Metrics/BlockNesting:
842
+ Enabled: true
843
+
844
+ Metrics/ClassLength:
845
+ Enabled: true
846
+ CountAsOne:
847
+ - array
848
+ - hash
849
+ - heredoc
850
+ Exclude:
851
+ - '**/db/migrate/**/*'
852
+
853
+ Metrics/CollectionLiteralLength:
854
+ Enabled: true
855
+ LengthThreshold: 100
856
+
857
+ Metrics/CyclomaticComplexity:
858
+ Enabled: true
859
+ Max: 10
860
+
861
+ Metrics/MethodLength:
862
+ Enabled: true
863
+ CountAsOne:
864
+ - array
865
+ - hash
866
+ - heredoc
867
+
868
+ Metrics/ModuleLength:
869
+ Enabled: true
870
+ CountAsOne:
871
+ - array
872
+ - hash
873
+ - heredoc
874
+
875
+ Metrics/ParameterLists:
876
+ Enabled: true
877
+ CountKeywordArgs: false
878
+ Max: 4
879
+
880
+ Metrics/PerceivedComplexity:
881
+ Enabled: false
882
+
883
+ Migration/DepartmentName:
884
+ Enabled: true
885
+
886
+ Naming/AccessorMethodName:
887
+ Enabled: true
888
+
889
+ Naming/AsciiIdentifiers:
890
+ Enabled: true
891
+
892
+ Naming/BinaryOperatorParameterName:
893
+ Enabled: true
894
+
895
+ Naming/BlockForwarding:
896
+ Enabled: true
897
+
898
+ Naming/BlockParameterName:
899
+ Enabled: true
900
+
901
+ Naming/ClassAndModuleCamelCase:
902
+ Enabled: true
903
+
904
+ Naming/ConstantName:
905
+ Enabled: true
906
+
907
+ Naming/FileName:
908
+ Enabled: true
909
+ IgnoreExecutableScripts: false
910
+
911
+ Naming/HeredocDelimiterCase:
912
+ Enabled: true
913
+
914
+ Naming/HeredocDelimiterNaming:
915
+ Enabled: true
916
+
917
+ Naming/InclusiveLanguage:
918
+ Enabled: false
919
+
920
+ Naming/MemoizedInstanceVariableName:
921
+ Enabled: true
922
+
923
+ Naming/MethodName:
924
+ Enabled: true
925
+
926
+ Naming/MethodParameterName:
927
+ Enabled: true
928
+
929
+ Naming/PredicateName:
930
+ Enabled: true
931
+
932
+ Naming/RescuedExceptionsVariableName:
933
+ Enabled: true
934
+
935
+ Naming/VariableName:
936
+ Enabled: true
937
+
938
+ Naming/VariableNumber:
939
+ Enabled: true
940
+
941
+ Security/CompoundHash:
942
+ Enabled: true
943
+
944
+ Security/Eval:
945
+ Enabled: true
946
+
947
+ Security/IoMethods:
948
+ Enabled: true
949
+
950
+ Security/JSONLoad:
951
+ Enabled: true
952
+
953
+ Security/MarshalLoad:
954
+ Enabled: true
955
+
956
+ Security/Open:
957
+ Enabled: true
958
+
959
+ Security/YAMLLoad:
960
+ Enabled: true
961
+
962
+ Style/AccessModifierDeclarations:
963
+ Enabled: true
964
+
965
+ Style/AccessorGrouping:
966
+ Enabled: true
967
+
968
+ Style/Alias:
969
+ Enabled: true
970
+
971
+ Style/AmbiguousEndlessMethodDefinition:
972
+ Enabled: true
973
+
974
+ Style/AndOr:
975
+ Enabled: true
976
+ EnforcedStyle: always
977
+
978
+ Style/ArgumentsForwarding:
979
+ Enabled: true
980
+
981
+ Style/ArrayCoercion:
982
+ Enabled: true
983
+
984
+ Style/ArrayFirstLast:
985
+ Enabled: false
986
+
987
+ Style/ArrayIntersect:
988
+ Enabled: true
989
+
990
+ Style/ArrayJoin:
991
+ Enabled: true
992
+
993
+ Style/AsciiComments:
994
+ Enabled: false
995
+
996
+ Style/Attr:
997
+ Enabled: true
998
+
999
+ Style/AutoResourceCleanup:
1000
+ Enabled: true
1001
+
1002
+ Style/BarePercentLiterals:
1003
+ Enabled: true
1004
+
1005
+ Style/BeginBlock:
1006
+ Enabled: true
1007
+
1008
+ Style/BisectedAttrAccessor:
1009
+ Enabled: true
1010
+
1011
+ Style/BitwisePredicate:
1012
+ Enabled: true
1013
+
1014
+ Style/BlockComments:
1015
+ Enabled: true
1016
+
1017
+ Style/BlockDelimiters:
1018
+ Enabled: true
1019
+
1020
+ Style/CaseEquality:
1021
+ Enabled: true
1022
+
1023
+ Style/CaseLikeIf:
1024
+ Enabled: true
1025
+
1026
+ Style/CharacterLiteral:
1027
+ Enabled: true
1028
+
1029
+ Style/ClassAndModuleChildren:
1030
+ Enabled: true
1031
+ EnforcedStyle: compact
1032
+ Exclude:
1033
+ - '**/config/application.rb'
1034
+
1035
+ Style/ClassCheck:
1036
+ Enabled: true
1037
+
1038
+ Style/ClassEqualityComparison:
1039
+ Enabled: true
1040
+
1041
+ Style/ClassMethods:
1042
+ Enabled: true
1043
+
1044
+ Style/ClassMethodsDefinitions:
1045
+ Enabled: true
1046
+ EnforcedStyle: self_class
1047
+
1048
+ Style/ClassVars:
1049
+ Enabled: true
1050
+
1051
+ Style/CollectionCompact:
1052
+ Enabled: true
1053
+
1054
+ Style/CollectionMethods:
1055
+ Enabled: false
1056
+
1057
+ Style/ColonMethodCall:
1058
+ Enabled: true
1059
+
1060
+ Style/ColonMethodDefinition:
1061
+ Enabled: true
1062
+
1063
+ Style/CombinableDefined:
1064
+ Enabled: true
1065
+
1066
+ Style/CombinableLoops:
1067
+ Enabled: true
1068
+
1069
+ Style/CommandLiteral:
1070
+ Enabled: true
1071
+ AllowInnerBackticks: true
1072
+
1073
+ Style/CommentAnnotation:
1074
+ Enabled: true
1075
+
1076
+ Style/CommentedKeyword:
1077
+ Enabled: true
1078
+
1079
+ Style/ComparableClamp:
1080
+ Enabled: true
1081
+
1082
+ Style/ConcatArrayLiterals:
1083
+ Enabled: true
1084
+
1085
+ Style/ConditionalAssignment:
1086
+ Enabled: true
1087
+
1088
+ Style/ConstantVisibility:
1089
+ Enabled: false
1090
+
1091
+ Style/Copyright:
1092
+ Enabled: false
1093
+
1094
+ Style/DataInheritance:
1095
+ Enabled: true
1096
+
1097
+ Style/DateTime:
1098
+ Enabled: true
1099
+
1100
+ Style/DefWithParentheses:
1101
+ Enabled: true
1102
+
1103
+ Style/Dir:
1104
+ Enabled: true
1105
+
1106
+ Style/DirEmpty:
1107
+ Enabled: true
1108
+
1109
+ Style/DisableCopsWithinSourceCodeDirective:
1110
+ Enabled: false
1111
+
1112
+ Style/DocumentDynamicEvalDefinition:
1113
+ Enabled: true
1114
+
1115
+ Style/Documentation:
1116
+ Enabled: false
1117
+
1118
+ Style/DocumentationMethod:
1119
+ Enabled: false
1120
+
1121
+ Style/DoubleCopDisableDirective:
1122
+ Enabled: true
1123
+
1124
+ Style/DoubleNegation:
1125
+ Enabled: true
1126
+
1127
+ Style/EachForSimpleLoop:
1128
+ Enabled: true
1129
+
1130
+ Style/EachWithObject:
1131
+ Enabled: true
1132
+
1133
+ Style/EmptyBlockParameter:
1134
+ Enabled: true
1135
+
1136
+ Style/EmptyCaseCondition:
1137
+ Enabled: true
1138
+
1139
+ Style/EmptyElse:
1140
+ Enabled: true
1141
+ EnforcedStyle: empty
1142
+
1143
+ Style/EmptyHeredoc:
1144
+ Enabled: true
1145
+
1146
+ Style/EmptyLambdaParameter:
1147
+ Enabled: true
1148
+
1149
+ Style/EmptyLiteral:
1150
+ Enabled: true
1151
+
1152
+ Style/EmptyMethod:
1153
+ Enabled: true
1154
+
1155
+ Style/Encoding:
1156
+ Enabled: true
1157
+
1158
+ Style/EndBlock:
1159
+ Enabled: true
1160
+
1161
+ Style/EndlessMethod:
1162
+ Enabled: true
1163
+ EnforcedStyle: disallow
1164
+
1165
+ Style/EnvHome:
1166
+ Enabled: true
1167
+
1168
+ Style/EvalWithLocation:
1169
+ Enabled: true
1170
+
1171
+ Style/EvenOdd:
1172
+ Enabled: true
1173
+
1174
+ Style/ExactRegexpMatch:
1175
+ Enabled: true
1176
+
1177
+ Style/ExpandPathArguments:
1178
+ Enabled: true
1179
+
1180
+ Style/ExplicitBlockArgument:
1181
+ Enabled: true
1182
+
1183
+ Style/ExponentialNotation:
1184
+ Enabled: true
1185
+
1186
+ Style/FetchEnvVar:
1187
+ Enabled: true
1188
+
1189
+ Style/FileEmpty:
1190
+ Enabled: true
1191
+
1192
+ Style/FileRead:
1193
+ Enabled: true
1194
+
1195
+ Style/FileWrite:
1196
+ Enabled: true
1197
+
1198
+ Style/FloatDivision:
1199
+ Enabled: true
1200
+ EnforcedStyle: fdiv
1201
+
1202
+ Style/For:
1203
+ Enabled: true
1204
+
1205
+ Style/FormatString:
1206
+ Enabled: true
1207
+
1208
+ Style/FormatStringToken:
1209
+ Enabled: true
1210
+
1211
+ Style/FrozenStringLiteralComment:
1212
+ Enabled: true
1213
+ EnforcedStyle: always_true
1214
+
1215
+ Style/GlobalStdStream:
1216
+ Enabled: true
1217
+
1218
+ Style/GlobalVars:
1219
+ Enabled: true
1220
+
1221
+ Style/GuardClause:
1222
+ Enabled: true
1223
+
1224
+ Style/HashAsLastArrayItem:
1225
+ Enabled: true
1226
+ EnforcedStyle: no_braces
1227
+
1228
+ Style/HashConversion:
1229
+ Enabled: true
1230
+
1231
+ Style/HashEachMethods:
1232
+ Enabled: true
1233
+
1234
+ Style/HashExcept:
1235
+ Enabled: true
1236
+
1237
+ Style/HashLikeCase:
1238
+ Enabled: true
1239
+
1240
+ Style/HashSyntax:
1241
+ Enabled: true
1242
+ EnforcedShorthandSyntax: always
1243
+
1244
+ Style/HashTransformKeys:
1245
+ Enabled: true
1246
+
1247
+ Style/HashTransformValues:
1248
+ Enabled: true
1249
+
1250
+ Style/IdenticalConditionalBranches:
1251
+ Enabled: true
1252
+
1253
+ Style/IfInsideElse:
1254
+ Enabled: true
1255
+
1256
+ Style/IfUnlessModifier:
1257
+ Enabled: true
1258
+
1259
+ Style/IfUnlessModifierOfIfUnless:
1260
+ Enabled: true
1261
+
1262
+ Style/IfWithBooleanLiteralBranches:
1263
+ Enabled: true
1264
+
1265
+ Style/IfWithSemicolon:
1266
+ Enabled: true
1267
+
1268
+ Style/ImplicitRuntimeError:
1269
+ Enabled: false
1270
+
1271
+ Style/InPatternThen:
1272
+ Enabled: true
1273
+
1274
+ Style/InfiniteLoop:
1275
+ Enabled: true
1276
+
1277
+ Style/InlineComment:
1278
+ Enabled: true
1279
+
1280
+ Style/InverseMethods:
1281
+ Enabled: true
1282
+
1283
+ Style/InvertibleUnlessCondition:
1284
+ Enabled: true
1285
+
1286
+ Style/IpAddresses:
1287
+ Enabled: true
1288
+
1289
+ Style/KeywordArgumentsMerging:
1290
+ Enabled: true
1291
+
1292
+ Style/KeywordParametersOrder:
1293
+ Enabled: true
1294
+
1295
+ Style/Lambda:
1296
+ Enabled: true
1297
+
1298
+ Style/LambdaCall:
1299
+ Enabled: true
1300
+
1301
+ Style/LineEndConcatenation:
1302
+ Enabled: true
1303
+
1304
+ Style/MagicCommentFormat:
1305
+ Enabled: true
1306
+ ValueCapitalization: lowercase
1307
+
1308
+ Style/MapCompactWithConditionalBlock:
1309
+ Enabled: true
1310
+
1311
+ Style/MapIntoArray:
1312
+ Enabled: true
1313
+
1314
+ Style/MapToHash:
1315
+ Enabled: true
1316
+
1317
+ Style/MapToSet:
1318
+ Enabled: true
1319
+
1320
+ Style/MethodCallWithArgsParentheses:
1321
+ Enabled: true
1322
+ AllowParenthesesInMultilineCall: true
1323
+ IgnoreMacros: false
1324
+ EnforcedStyle: omit_parentheses
1325
+
1326
+ Style/MethodCallWithoutArgsParentheses:
1327
+ Enabled: true
1328
+
1329
+ Style/MethodCalledOnDoEndBlock:
1330
+ Enabled: false
1331
+
1332
+ Style/MethodDefParentheses:
1333
+ Enabled: true
1334
+
1335
+ Style/MinMax:
1336
+ Enabled: true
1337
+
1338
+ Style/MinMaxComparison:
1339
+ Enabled: true
1340
+
1341
+ Style/MissingElse:
1342
+ Enabled: false
1343
+
1344
+ Style/MissingRespondToMissing:
1345
+ Enabled: true
1346
+
1347
+ Style/MixinGrouping:
1348
+ Enabled: true
1349
+ EnforcedStyle: grouped
1350
+
1351
+ Style/MixinUsage:
1352
+ Enabled: true
1353
+
1354
+ Style/ModuleFunction:
1355
+ Enabled: true
1356
+
1357
+ Style/MultilineBlockChain:
1358
+ Enabled: false
1359
+
1360
+ Style/MultilineIfModifier:
1361
+ Enabled: true
1362
+
1363
+ Style/MultilineIfThen:
1364
+ Enabled: true
1365
+
1366
+ Style/MultilineInPatternThen:
1367
+ Enabled: true
1368
+
1369
+ Style/MultilineMemoization:
1370
+ Enabled: true
1371
+
1372
+ Style/MultilineMethodSignature:
1373
+ Enabled: false
1374
+
1375
+ Style/MultilineTernaryOperator:
1376
+ Enabled: true
1377
+
1378
+ Style/MultilineWhenThen:
1379
+ Enabled: true
1380
+
1381
+ Style/MultipleComparison:
1382
+ Enabled: true
1383
+
1384
+ Style/MutableConstant:
1385
+ Enabled: true
1386
+
1387
+ Style/NegatedIf:
1388
+ Enabled: true
1389
+
1390
+ Style/NegatedIfElseCondition:
1391
+ Enabled: true
1392
+
1393
+ Style/NegatedUnless:
1394
+ Enabled: true
1395
+
1396
+ Style/NegatedWhile:
1397
+ Enabled: true
1398
+
1399
+ Style/NestedFileDirname:
1400
+ Enabled: true
1401
+
1402
+ Style/NestedModifier:
1403
+ Enabled: true
1404
+
1405
+ Style/NestedParenthesizedCalls:
1406
+ Enabled: true
1407
+
1408
+ Style/NestedTernaryOperator:
1409
+ Enabled: true
1410
+
1411
+ Style/Next:
1412
+ Enabled: true
1413
+
1414
+ Style/NilComparison:
1415
+ Enabled: true
1416
+
1417
+ Style/NilLambda:
1418
+ Enabled: true
1419
+
1420
+ Style/NonNilCheck:
1421
+ Enabled: true
1422
+
1423
+ Style/Not:
1424
+ Enabled: true
1425
+
1426
+ Style/NumberedParameters:
1427
+ Enabled: true
1428
+ EnforcedStyle: disallow
1429
+
1430
+ Style/NumberedParametersLimit:
1431
+ Enabled: true
1432
+
1433
+ Style/NumericLiteralPrefix:
1434
+ Enabled: true
1435
+
1436
+ Style/NumericLiterals:
1437
+ Enabled: true
1438
+
1439
+ Style/NumericPredicate:
1440
+ Enabled: true
1441
+
1442
+ Style/ObjectThen:
1443
+ Enabled: true
1444
+
1445
+ Style/OneLineConditional:
1446
+ Enabled: true
1447
+
1448
+ Style/OpenStructUse:
1449
+ Enabled: true
1450
+
1451
+ Style/OperatorMethodCall:
1452
+ Enabled: true
1453
+
1454
+ Style/OptionHash:
1455
+ Enabled: false
1456
+
1457
+ Style/OptionalArguments:
1458
+ Enabled: true
1459
+
1460
+ Style/OptionalBooleanParameter:
1461
+ Enabled: true
1462
+
1463
+ Style/OrAssignment:
1464
+ Enabled: true
1465
+
1466
+ Style/ParallelAssignment:
1467
+ Enabled: true
1468
+
1469
+ Style/ParenthesesAroundCondition:
1470
+ Enabled: true
1471
+
1472
+ Style/PercentLiteralDelimiters:
1473
+ Enabled: true
1474
+
1475
+ Style/PercentQLiterals:
1476
+ Enabled: true
1477
+
1478
+ Style/PerlBackrefs:
1479
+ Enabled: true
1480
+
1481
+ Style/PreferredHashMethods:
1482
+ Enabled: true
1483
+
1484
+ Style/Proc:
1485
+ Enabled: true
1486
+
1487
+ Style/QuotedSymbols:
1488
+ Enabled: true
1489
+
1490
+ Style/RaiseArgs:
1491
+ Enabled: true
1492
+
1493
+ Style/RandomWithOffset:
1494
+ Enabled: true
1495
+
1496
+ Style/RedundantArgument:
1497
+ Enabled: true
1498
+
1499
+ Style/RedundantArrayConstructor:
1500
+ Enabled: true
1501
+
1502
+ Style/RedundantAssignment:
1503
+ Enabled: true
1504
+
1505
+ Style/RedundantBegin:
1506
+ Enabled: true
1507
+
1508
+ Style/RedundantCapitalW:
1509
+ Enabled: true
1510
+
1511
+ Style/RedundantCondition:
1512
+ Enabled: true
1513
+
1514
+ Style/RedundantConditional:
1515
+ Enabled: true
1516
+
1517
+ Style/RedundantConstantBase:
1518
+ Enabled: true
1519
+
1520
+ Style/RedundantCurrentDirectoryInPath:
1521
+ Enabled: true
1522
+
1523
+ Style/RedundantDoubleSplatHashBraces:
1524
+ Enabled: true
1525
+
1526
+ Style/RedundantEach:
1527
+ Enabled: true
1528
+
1529
+ Style/RedundantException:
1530
+ Enabled: true
1531
+
1532
+ Style/RedundantFetchBlock:
1533
+ Enabled: true
1534
+
1535
+ Style/RedundantFileExtensionInRequire:
1536
+ Enabled: true
1537
+
1538
+ Style/RedundantFilterChain:
1539
+ Enabled: true
1540
+
1541
+ Style/RedundantFreeze:
1542
+ Enabled: true
1543
+
1544
+ Style/RedundantHeredocDelimiterQuotes:
1545
+ Enabled: true
1546
+
1547
+ Style/RedundantInitialize:
1548
+ Enabled: true
1549
+
1550
+ Style/RedundantInterpolation:
1551
+ Enabled: true
1552
+
1553
+ Style/RedundantInterpolationUnfreeze:
1554
+ Enabled: true
1555
+
1556
+ Style/RedundantLineContinuation:
1557
+ Enabled: true
1558
+
1559
+ Style/RedundantParentheses:
1560
+ Enabled: true
1561
+
1562
+ Style/RedundantPercentQ:
1563
+ Enabled: true
1564
+
1565
+ Style/RedundantRegexpArgument:
1566
+ Enabled: true
1567
+
1568
+ Style/RedundantRegexpCharacterClass:
1569
+ Enabled: true
1570
+
1571
+ Style/RedundantRegexpConstructor:
1572
+ Enabled: true
1573
+
1574
+ Style/RedundantRegexpEscape:
1575
+ Enabled: true
1576
+
1577
+ Style/RedundantReturn:
1578
+ Enabled: true
1579
+
1580
+ Style/RedundantSelf:
1581
+ Enabled: true
1582
+
1583
+ Style/RedundantSelfAssignment:
1584
+ Enabled: true
1585
+
1586
+ Style/RedundantSelfAssignmentBranch:
1587
+ Enabled: true
1588
+
1589
+ Style/RedundantSort:
1590
+ Enabled: true
1591
+
1592
+ Style/RedundantSortBy:
1593
+ Enabled: true
1594
+
1595
+ Style/RedundantStringEscape:
1596
+ Enabled: true
1597
+
1598
+ Style/RegexpLiteral:
1599
+ Enabled: true
1600
+
1601
+ Style/RequireOrder:
1602
+ Enabled: true
1603
+
1604
+ Style/RescueModifier:
1605
+ Enabled: true
1606
+
1607
+ Style/RescueStandardError:
1608
+ Enabled: true
1609
+
1610
+ Style/ReturnNil:
1611
+ Enabled: true
1612
+
1613
+ Style/ReturnNilInPredicateMethodDefinition:
1614
+ Enabled: true
1615
+
1616
+ Style/SafeNavigation:
1617
+ Enabled: true
1618
+
1619
+ Style/SafeNavigationChainLength:
1620
+ Enabled: false
1621
+
1622
+ Style/Sample:
1623
+ Enabled: true
1624
+
1625
+ Style/SelectByRegexp:
1626
+ Enabled: true
1627
+
1628
+ Style/SelfAssignment:
1629
+ Enabled: true
1630
+
1631
+ Style/Semicolon:
1632
+ Enabled: true
1633
+
1634
+ Style/Send:
1635
+ Enabled: true
1636
+
1637
+ Style/SendWithLiteralMethodName:
1638
+ Enabled: true
1639
+ AllowSend: false
1640
+
1641
+ Style/SignalException:
1642
+ Enabled: true
1643
+
1644
+ Style/SingleArgumentDig:
1645
+ Enabled: true
1646
+
1647
+ Style/SingleLineBlockParams:
1648
+ Enabled: false
1649
+
1650
+ Style/SingleLineDoEndBlock:
1651
+ Enabled: true
1652
+
1653
+ Style/SingleLineMethods:
1654
+ Enabled: true
1655
+
1656
+ Style/SlicingWithRange:
1657
+ Enabled: true
1658
+
1659
+ Style/SoleNestedConditional:
1660
+ Enabled: true
1661
+
1662
+ Style/SpecialGlobalVars:
1663
+ Enabled: true
1664
+
1665
+ Style/StabbyLambdaParentheses:
1666
+ Enabled: true
1667
+
1668
+ Style/StaticClass:
1669
+ Enabled: false
1670
+
1671
+ Style/StderrPuts:
1672
+ Enabled: true
1673
+
1674
+ Style/StringChars:
1675
+ Enabled: true
1676
+
1677
+ Style/StringConcatenation:
1678
+ Enabled: true
1679
+
1680
+ Style/StringHashKeys:
1681
+ Enabled: false
1682
+
1683
+ Style/StringLiterals:
1684
+ Enabled: true
1685
+
1686
+ Style/StringLiteralsInInterpolation:
1687
+ Enabled: true
1688
+
1689
+ Style/StringMethods:
1690
+ Enabled: true
1691
+
1692
+ Style/Strip:
1693
+ Enabled: true
1694
+
1695
+ Style/StructInheritance:
1696
+ Enabled: true
1697
+
1698
+ Style/SuperArguments:
1699
+ Enabled: true
1700
+
1701
+ Style/SuperWithArgsParentheses:
1702
+ Enabled: true
1703
+
1704
+ Style/SwapValues:
1705
+ Enabled: true
1706
+
1707
+ Style/SymbolArray:
1708
+ Enabled: true
1709
+ MinSize: 1
1710
+
1711
+ Style/SymbolLiteral:
1712
+ Enabled: true
1713
+
1714
+ Style/SymbolProc:
1715
+ Enabled: true
1716
+
1717
+ Style/TernaryParentheses:
1718
+ Enabled: true
1719
+
1720
+ Style/TopLevelMethodDefinition:
1721
+ Enabled: false
1722
+
1723
+ Style/TrailingBodyOnClass:
1724
+ Enabled: true
1725
+
1726
+ Style/TrailingBodyOnMethodDefinition:
1727
+ Enabled: true
1728
+
1729
+ Style/TrailingBodyOnModule:
1730
+ Enabled: true
1731
+
1732
+ Style/TrailingCommaInArguments:
1733
+ Enabled: true
1734
+ EnforcedStyleForMultiline: comma
1735
+
1736
+ Style/TrailingCommaInArrayLiteral:
1737
+ Enabled: true
1738
+ EnforcedStyleForMultiline: comma
1739
+
1740
+ Style/TrailingCommaInBlockArgs:
1741
+ Enabled: false
1742
+
1743
+ Style/TrailingCommaInHashLiteral:
1744
+ Enabled: true
1745
+ EnforcedStyleForMultiline: comma
1746
+
1747
+ Style/TrailingMethodEndStatement:
1748
+ Enabled: true
1749
+
1750
+ Style/TrailingUnderscoreVariable:
1751
+ Enabled: true
1752
+
1753
+ Style/TrivialAccessors:
1754
+ Enabled: true
1755
+
1756
+ Style/UnlessElse:
1757
+ Enabled: true
1758
+
1759
+ Style/UnlessLogicalOperators:
1760
+ Enabled: false
1761
+
1762
+ Style/UnpackFirst:
1763
+ Enabled: true
1764
+
1765
+ Style/VariableInterpolation:
1766
+ Enabled: true
1767
+
1768
+ Style/WhenThen:
1769
+ Enabled: true
1770
+
1771
+ Style/WhileUntilDo:
1772
+ Enabled: true
1773
+
1774
+ Style/WhileUntilModifier:
1775
+ Enabled: true
1776
+
1777
+ Style/WordArray:
1778
+ Enabled: true
1779
+ MinSize: 1
1780
+
1781
+ Style/YAMLFileRead:
1782
+ Enabled: true
1783
+
1784
+ Style/YodaCondition:
1785
+ Enabled: true
1786
+
1787
+ Style/YodaExpression:
1788
+ Enabled: true
1789
+
1790
+ Style/ZeroLengthPredicate:
1791
+ Enabled: true