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