talkable-style 1.2022.0131 → 1.2022.0201

Sign up to get free protection for your applications and to get access to all the features.
data/default.yml CHANGED
@@ -1,9 +1,3 @@
1
- require:
2
- - rubocop-performance
3
- - rubocop-rails
4
- - rubocop-rake
5
- - rubocop-rspec
6
-
7
1
  AllCops:
8
2
  Exclude:
9
3
  - node_modules/**/*
@@ -13,1154 +7,23 @@ AllCops:
13
7
  DisabledByDefault: true
14
8
  TargetRubyVersion: 3.0
15
9
  TargetRailsVersion: 7.0
16
- RSpec:
17
- Language:
18
- Includes:
19
- Examples:
20
- - it_has_behavior
21
-
22
- Bundler/DuplicatedGem:
23
- Enabled: true
24
- Bundler/InsecureProtocolSource:
25
- Enabled: true
26
-
27
- Layout/AccessModifierIndentation:
28
- Enabled: true
29
- Layout/ArrayAlignment:
30
- Enabled: true
31
- Layout/AssignmentIndentation:
32
- Enabled: true
33
- Layout/BeginEndAlignment:
34
- Enabled: true
35
- Layout/BlockAlignment:
36
- Enabled: true
37
- Layout/BlockEndNewline:
38
- Enabled: true
39
- Layout/ClosingHeredocIndentation:
40
- Enabled: true
41
- Layout/CommentIndentation:
42
- Enabled: true
43
- Layout/ConditionPosition:
44
- Enabled: true
45
- Layout/DefEndAlignment:
46
- Enabled: true
47
- Layout/EmptyComment:
48
- Enabled: true
49
- Layout/EmptyLineBetweenDefs:
50
- Enabled: true
51
- Layout/EmptyLines:
52
- Enabled: true
53
- Layout/EmptyLinesAroundAccessModifier:
54
- Enabled: true
55
- Layout/EmptyLinesAroundBeginBody:
56
- Enabled: true
57
- Layout/EmptyLinesAroundBlockBody:
58
- Enabled: true
59
- Layout/EmptyLinesAroundClassBody:
60
- Enabled: true
61
- Layout/EmptyLinesAroundExceptionHandlingKeywords:
62
- Enabled: true
63
- Layout/EmptyLinesAroundMethodBody:
64
- Enabled: true
65
- Layout/EmptyLinesAroundModuleBody:
66
- Enabled: true
67
- Layout/EndOfLine:
68
- Enabled: true
69
- Layout/ExtraSpacing:
70
- Enabled: true
71
- Layout/FirstArrayElementIndentation:
72
- Enabled: true
73
- EnforcedStyle: consistent
74
- Layout/FirstHashElementIndentation:
75
- Enabled: true
76
- EnforcedStyle: consistent
77
- Layout/HeredocIndentation:
78
- Enabled: true
79
- Layout/IndentationConsistency:
80
- Enabled: true
81
- Layout/IndentationStyle:
82
- Enabled: true
83
- Layout/InitialIndentation:
84
- Enabled: true
85
- Layout/LeadingCommentSpace:
86
- Enabled: true
87
- Layout/LeadingEmptyLines:
88
- Enabled: true
89
- Layout/MultilineAssignmentLayout:
90
- Enabled: true
91
- EnforcedStyle: same_line
92
- Layout/MultilineBlockLayout:
93
- Enabled: true
94
- Exclude:
95
- - spec/**/*
96
- Layout/MultilineMethodCallIndentation:
97
- Enabled: true
98
- EnforcedStyle: indented
99
- Exclude:
100
- - spec/**/*
101
- Layout/MultilineMethodDefinitionBraceLayout:
102
- Enabled: true
103
- Layout/MultilineOperationIndentation:
104
- Enabled: true
105
- Layout/RescueEnsureAlignment:
106
- Enabled: true
107
- Layout/SpaceAfterColon:
108
- Enabled: true
109
- Layout/SpaceAfterComma:
110
- Enabled: true
111
- Layout/SpaceAfterMethodName:
112
- Enabled: true
113
- Layout/SpaceAfterNot:
114
- Enabled: true
115
- Layout/SpaceAfterSemicolon:
116
- Enabled: true
117
- Layout/SpaceAroundBlockParameters:
118
- Enabled: true
119
- Layout/SpaceAroundEqualsInParameterDefault:
120
- Enabled: true
121
- Layout/SpaceAroundKeyword:
122
- Enabled: true
123
- Layout/SpaceAroundMethodCallOperator:
124
- Enabled: true
125
- Layout/SpaceAroundOperators:
126
- Enabled: true
127
- Layout/SpaceBeforeBrackets:
128
- Enabled: true
129
- Layout/SpaceBeforeComma:
130
- Enabled: true
131
- Layout/SpaceBeforeComment:
132
- Enabled: true
133
- Layout/SpaceBeforeFirstArg:
134
- Enabled: true
135
- Layout/SpaceBeforeSemicolon:
136
- Enabled: true
137
- Layout/SpaceInLambdaLiteral:
138
- Enabled: true
139
- Layout/SpaceInsideArrayPercentLiteral:
140
- Enabled: true
141
- Layout/SpaceInsideParens:
142
- Enabled: true
143
- Layout/SpaceInsidePercentLiteralDelimiters:
144
- Enabled: true
145
- Layout/SpaceInsideRangeLiteral:
146
- Enabled: true
147
- Layout/TrailingEmptyLines:
148
- Enabled: true
149
- Layout/TrailingWhitespace:
150
- Enabled: true
151
-
152
- Lint/AmbiguousAssignment:
153
- Enabled: true
154
- Lint/AmbiguousOperator:
155
- Enabled: true
156
- Lint/AmbiguousOperatorPrecedence:
157
- Enabled: true
158
- Lint/AmbiguousRange:
159
- Enabled: true
160
- Lint/AmbiguousRegexpLiteral:
161
- Enabled: true
162
- Lint/BigDecimalNew:
163
- Enabled: true
164
- Lint/BinaryOperatorWithIdenticalOperands:
165
- Enabled: true
166
- Lint/BooleanSymbol:
167
- Enabled: true
168
- Lint/CircularArgumentReference:
169
- Enabled: true
170
- Lint/ConstantDefinitionInBlock:
171
- Enabled: true
172
- Lint/Debugger:
173
- Enabled: true
174
- Lint/DeprecatedClassMethods:
175
- Enabled: true
176
- Lint/DeprecatedConstants:
177
- Enabled: true
178
- Lint/DeprecatedOpenSSLConstant:
179
- Enabled: true
180
- Lint/DisjunctiveAssignmentInConstructor:
181
- Enabled: true
182
- Lint/DuplicateBranch:
183
- Enabled: true
184
- Lint/DuplicateCaseCondition:
185
- Enabled: true
186
- Lint/DuplicateElsifCondition:
187
- Enabled: true
188
- Lint/DuplicateHashKey:
189
- Enabled: true
190
- Lint/DuplicateMethods:
191
- Enabled: true
192
- Lint/DuplicateRegexpCharacterClassElement:
193
- Enabled: true
194
- Lint/DuplicateRequire:
195
- Enabled: true
196
- Lint/DuplicateRescueException:
197
- Enabled: true
198
- Lint/EachWithObjectArgument:
199
- Enabled: true
200
- Lint/ElseLayout:
201
- Enabled: true
202
- Lint/EmptyBlock:
203
- Enabled: true
204
- Lint/EmptyClass:
205
- Enabled: true
206
- Lint/EmptyConditionalBody:
207
- Enabled: true
208
- Lint/EmptyEnsure:
209
- Enabled: true
210
- Lint/EmptyExpression:
211
- Enabled: true
212
- Lint/EmptyFile:
213
- Enabled: true
214
- Lint/EmptyInPattern:
215
- Enabled: true
216
- Lint/EmptyInterpolation:
217
- Enabled: true
218
- Lint/EmptyWhen:
219
- Enabled: true
220
- Lint/EnsureReturn:
221
- Enabled: true
222
- Lint/FlipFlop:
223
- Enabled: true
224
- Lint/FloatComparison:
225
- Enabled: true
226
- Lint/FloatOutOfRange:
227
- Enabled: true
228
- Lint/FormatParameterMismatch:
229
- Enabled: true
230
- Lint/HashCompareByIdentity:
231
- Enabled: true
232
- Lint/HeredocMethodCallPosition:
233
- Enabled: true
234
- Lint/IdentityComparison:
235
- Enabled: true
236
- Lint/ImplicitStringConcatenation:
237
- Enabled: true
238
- Lint/IncompatibleIoSelectWithFiberScheduler:
239
- Enabled: true
240
- Lint/IneffectiveAccessModifier:
241
- Enabled: true
242
- Lint/InheritException:
243
- Enabled: true
244
- EnforcedStyle: standard_error
245
- Lint/LiteralAsCondition:
246
- Enabled: true
247
- Lint/LiteralInInterpolation:
248
- Enabled: true
249
- Lint/Loop:
250
- Enabled: true
251
- Lint/MissingCopEnableDirective:
252
- Enabled: true
253
- Lint/MissingSuper:
254
- Enabled: true
255
- Lint/MixedRegexpCaptureTypes:
256
- Enabled: true
257
- Lint/MultipleComparison:
258
- Enabled: true
259
- Lint/NestedMethodDefinition:
260
- Enabled: true
261
- Lint/NextWithoutAccumulator:
262
- Enabled: true
263
- Lint/NonDeterministicRequireOrder:
264
- Enabled: true
265
- Lint/NonLocalExitFromIterator:
266
- Enabled: true
267
- Lint/NumberedParameterAssignment:
268
- Enabled: true
269
- Lint/OrAssignmentToConstant:
270
- Enabled: true
271
- Lint/OutOfRangeRegexpRef:
272
- Enabled: true
273
- Lint/ParenthesesAsGroupedExpression:
274
- Enabled: true
275
- Lint/PercentStringArray:
276
- Enabled: true
277
- Lint/PercentSymbolArray:
278
- Enabled: true
279
- Lint/RaiseException:
280
- Enabled: true
281
- Lint/RandOne:
282
- Enabled: true
283
- Lint/RedundantCopDisableDirective:
284
- Enabled: true
285
- Lint/RedundantCopEnableDirective:
286
- Enabled: true
287
- Lint/RedundantDirGlobSort:
288
- Enabled: true
289
- Lint/RedundantRequireStatement:
290
- Enabled: true
291
- Lint/RedundantSafeNavigation:
292
- Enabled: true
293
- Lint/RedundantSplatExpansion:
294
- Enabled: true
295
- Lint/RedundantStringCoercion:
296
- Enabled: true
297
- Lint/RedundantWithIndex:
298
- Enabled: true
299
- Lint/RedundantWithObject:
300
- Enabled: true
301
- Lint/RegexpAsCondition:
302
- Enabled: true
303
- Lint/RequireParentheses:
304
- Enabled: true
305
- Lint/RequireRelativeSelfPath:
306
- Enabled: true
307
- Lint/RescueException:
308
- Enabled: true
309
- Lint/RescueType:
310
- Enabled: true
311
- Lint/ReturnInVoidContext:
312
- Enabled: true
313
- Lint/SafeNavigationChain:
314
- Enabled: true
315
- AllowedMethods:
316
- - present?
317
- - blank?
318
- - presence
319
- - try
320
- - try!
321
- - to_bool
322
- - to_liquid
323
- - in?
324
- Lint/SafeNavigationWithEmpty:
325
- Enabled: true
326
- Lint/ScriptPermission:
327
- Enabled: true
328
- Lint/SelfAssignment:
329
- Enabled: true
330
- Lint/SendWithMixinArgument:
331
- Enabled: true
332
- Lint/ShadowedException:
333
- Enabled: true
334
- Lint/StructNewOverride:
335
- Enabled: true
336
- Lint/SymbolConversion:
337
- Enabled: true
338
- Lint/ToEnumArguments:
339
- Enabled: true
340
- Lint/ToJSON:
341
- Enabled: true
342
- Lint/TopLevelReturnWithArgument:
343
- Enabled: true
344
- Lint/TrailingCommaInAttributeDeclaration:
345
- Enabled: true
346
- Lint/TripleQuotes:
347
- Enabled: true
348
- Lint/UnexpectedBlockArity:
349
- Enabled: true
350
- Lint/UnifiedInteger:
351
- Enabled: true
352
- Lint/UnmodifiedReduceAccumulator:
353
- Enabled: true
354
- Lint/UnreachableCode:
355
- Enabled: true
356
- Lint/UnreachableLoop:
357
- Enabled: true
358
- Lint/UnusedBlockArgument:
359
- Enabled: true
360
- Lint/UnusedMethodArgument:
361
- Enabled: true
362
- Lint/UriEscapeUnescape:
363
- Enabled: true
364
- Lint/UriRegexp:
365
- Enabled: true
366
- Lint/UselessAccessModifier:
367
- Enabled: true
368
- Lint/UselessAssignment:
369
- Enabled: true
370
- Lint/UselessElseWithoutRescue:
371
- Enabled: true
372
- Lint/UselessMethodDefinition:
373
- Enabled: true
374
- Lint/UselessRuby2Keywords:
375
- Enabled: true
376
- Lint/UselessSetterCall:
377
- Enabled: true
378
- Lint/UselessTimes:
379
- Enabled: true
380
- Lint/Void:
381
- Enabled: true
382
-
383
- Metrics/BlockNesting:
384
- Enabled: true
385
-
386
- Naming/AsciiIdentifiers:
387
- Enabled: true
388
- Naming/BlockForwarding:
389
- Enabled: true
390
- Naming/ClassAndModuleCamelCase:
391
- Enabled: true
392
- Naming/ConstantName:
393
- Enabled: true
394
- Naming/FileName:
395
- Enabled: true
396
- Naming/InclusiveLanguage:
397
- Enabled: true
398
- Naming/MemoizedInstanceVariableName:
399
- Enabled: true
400
- Naming/MethodName:
401
- Enabled: true
402
- Naming/PredicateName:
403
- Enabled: true
404
- NamePrefix:
405
- - is_
406
- ForbiddenPrefixes:
407
- - is_
408
- Naming/RescuedExceptionsVariableName:
409
- Enabled: true
410
- Naming/VariableName:
411
- Enabled: true
412
-
413
- Performance/AncestorsInclude:
414
- Enabled: true
415
- Performance/BigDecimalWithNumericArgument:
416
- Enabled: true
417
- Performance/BindCall:
418
- Enabled: true
419
- Performance/BlockGivenWithExplicitBlock:
420
- Enabled: true
421
- Performance/Caller:
422
- Enabled: true
423
- Performance/CaseWhenSplat:
424
- Enabled: true
425
- Performance/Casecmp:
426
- Enabled: true
427
- Performance/CollectionLiteralInLoop:
428
- Enabled: true
429
- Performance/CompareWithBlock:
430
- Enabled: true
431
- Performance/ConstantRegexp:
432
- Enabled: true
433
- Performance/Count:
434
- Enabled: true
435
- Performance/DeletePrefix:
436
- Enabled: true
437
- Performance/DeleteSuffix:
438
- Enabled: true
439
- Performance/Detect:
440
- Enabled: true
441
- Performance/DoubleStartEndWith:
442
- Enabled: true
443
- Performance/EndWith:
444
- Enabled: true
445
- Performance/FixedSize:
446
- Enabled: true
447
- Performance/FlatMap:
448
- Enabled: true
449
- Performance/InefficientHashSearch:
450
- Enabled: true
451
- Performance/IoReadlines:
452
- Enabled: true
453
- Performance/MapCompact:
454
- Enabled: true
455
- Performance/RangeInclude:
456
- Enabled: true
457
- Performance/RedundantBlockCall:
458
- Enabled: true
459
- Performance/RedundantEqualityComparisonBlock:
460
- Enabled: true
461
- Performance/RedundantMatch:
462
- Enabled: true
463
- Performance/RedundantMerge:
464
- Enabled: true
465
- Performance/RedundantSortBlock:
466
- Enabled: true
467
- Performance/RedundantSplitRegexpArgument:
468
- Enabled: true
469
- Performance/RedundantStringChars:
470
- Enabled: true
471
- Performance/RegexpMatch:
472
- Enabled: true
473
- Performance/ReverseEach:
474
- Enabled: true
475
- Performance/ReverseFirst:
476
- Enabled: true
477
- Performance/Size:
478
- Enabled: true
479
- Performance/SortReverse:
480
- Enabled: true
481
- Performance/Squeeze:
482
- Enabled: true
483
- Performance/StartWith:
484
- Enabled: true
485
- Performance/StringIdentifierArgument:
486
- Enabled: true
487
- Performance/StringInclude:
488
- Enabled: true
489
- Performance/StringReplacement:
490
- Enabled: true
491
- Performance/Sum:
492
- Enabled: true
493
- Performance/TimesMap:
494
- Enabled: true
495
- Performance/UnfreezeString:
496
- Enabled: true
497
- Performance/UriDefaultParser:
498
- Enabled: true
499
-
500
- Rails/ActionFilter:
501
- Enabled: true
502
- Rails/ActiveRecordAliases:
503
- Enabled: true
504
- Rails/ActiveRecordCallbacksOrder:
505
- Enabled: true
506
- Rails/ActiveRecordOverride:
507
- Enabled: true
508
- Rails/ActiveSupportAliases:
509
- Enabled: true
510
- Rails/AddColumnIndex:
511
- Enabled: true
512
- Rails/AfterCommitOverride:
513
- Enabled: true
514
- Rails/ApplicationController:
515
- Enabled: true
516
- Rails/ApplicationJob:
517
- Enabled: true
518
- Rails/ApplicationMailer:
519
- Enabled: true
520
- Rails/ApplicationRecord:
521
- Enabled: true
522
- Rails/ArelStar:
523
- Enabled: true
524
- Rails/AttributeDefaultBlockValue:
525
- Enabled: true
526
- Rails/BelongsTo:
527
- Enabled: true
528
- Rails/Blank:
529
- Enabled: true
530
- NilOrEmpty: false
531
- NotPresent: true
532
- UnlessPresent: true
533
- Rails/BulkChangeTable:
534
- Enabled: true
535
- Rails/CreateTableWithTimestamps:
536
- Enabled: true
537
- Rails/Date:
538
- Enabled: true
539
- Rails/DelegateAllowBlank:
540
- Enabled: true
541
- Rails/DurationArithmetic:
542
- Enabled: true
543
- Rails/DynamicFindBy:
544
- Enabled: true
545
- Rails/EnumHash:
546
- Enabled: true
547
- Rails/EnumUniqueness:
548
- Enabled: true
549
- Rails/EnvironmentComparison:
550
- Enabled: true
551
- Rails/Exit:
552
- Enabled: true
553
- Rails/ExpandedDateRange:
554
- Enabled: true
555
- Rails/FindBy:
556
- Enabled: true
557
- Rails/FindById:
558
- Enabled: true
559
- Rails/FindEach:
560
- Enabled: true
561
- Rails/HasAndBelongsToMany:
562
- Enabled: true
563
- Rails/HelperInstanceVariable:
564
- Enabled: true
565
- Rails/HttpPositionalArguments:
566
- Enabled: true
567
- Rails/HttpStatus:
568
- Enabled: true
569
- Rails/IgnoredSkipActionFilterOption:
570
- Enabled: true
571
- Rails/IndexBy:
572
- Enabled: true
573
- Rails/IndexWith:
574
- Enabled: true
575
- Rails/InverseOf:
576
- Enabled: true
577
- Rails/LexicallyScopedActionFilter:
578
- Enabled: true
579
- Rails/LinkToBlank:
580
- Enabled: true
581
- Rails/MailerName:
582
- Enabled: true
583
- Rails/MatchRoute:
584
- Enabled: true
585
- Rails/NegateInclude:
586
- Enabled: true
587
- Rails/NotNullColumn:
588
- Enabled: true
589
- Rails/OrderById:
590
- Enabled: true
591
- Rails/PluckId:
592
- Enabled: true
593
- Rails/PluckInWhere:
594
- Enabled: true
595
- Rails/PluralizationGrammar:
596
- Enabled: true
597
- Rails/Presence:
598
- Enabled: true
599
- Rails/Present:
600
- Enabled: true
601
- NotNilAndNotEmpty: false
602
- NotBlank: true
603
- UnlessBlank: true
604
- Rails/RakeEnvironment:
605
- Enabled: true
606
- Rails/ReadWriteAttribute:
607
- Enabled: true
608
- Rails/RedundantAllowNil:
609
- Enabled: true
610
- Rails/RedundantPresenceValidationOnBelongsTo:
611
- Enabled: true
612
- Rails/RedundantReceiverInWithOptions:
613
- Enabled: true
614
- Rails/RedundantTravelBack:
615
- Enabled: true
616
- Rails/ReflectionClassName:
617
- Enabled: true
618
- Rails/RelativeDateConstant:
619
- Enabled: true
620
- Rails/RenderInline:
621
- Enabled: true
622
- Rails/RenderPlainText:
623
- Enabled: true
624
- Rails/RequestReferer:
625
- Enabled: true
626
- Rails/RequireDependency:
627
- Enabled: true
628
- Rails/ReversibleMigration:
629
- Enabled: true
630
- Include:
631
- - db/migrate/*.rb
632
- - db/sharded_migrate/*.rb
633
- Rails/ReversibleMigrationMethodDefinition:
634
- Enabled: true
635
- Include:
636
- - db/migrate/*.rb
637
- - db/sharded_migrate/*.rb
638
- Rails/RootJoinChain:
639
- Enabled: true
640
- Rails/SafeNavigation:
641
- Enabled: true
642
- Rails/SafeNavigationWithBlank:
643
- Enabled: true
644
- Rails/SaveBang:
645
- Enabled: true
646
- Exclude:
647
- - spec/**/*
648
- Rails/ScopeArgs:
649
- Enabled: true
650
- Rails/ShortI18n:
651
- Enabled: true
652
- Rails/SkipsModelValidations:
653
- Enabled: true
654
- Exclude:
655
- - db/**/*
656
- - spec/**/*
657
- Rails/SquishedSQLHeredocs:
658
- Enabled: true
659
- Rails/TimeZone:
660
- Enabled: true
661
- Rails/TimeZoneAssignment:
662
- Enabled: true
663
- Rails/UniqBeforePluck:
664
- Enabled: true
665
- Rails/UniqueValidationWithoutIndex:
666
- Enabled: true
667
- Rails/UnknownEnv:
668
- Enabled: true
669
- Environments:
670
- - development
671
- - production
672
- - staging
673
- - test
674
- Rails/UnusedIgnoredColumns:
675
- Enabled: true
676
- Rails/Validation:
677
- Enabled: true
678
- Rails/WhereEquals:
679
- Enabled: true
680
- Rails/WhereExists:
681
- Enabled: true
682
- Rails/WhereNot:
683
- Enabled: true
684
-
685
- Rake/ClassDefinitionInTask:
686
- Enabled: true
687
- Rake/Desc:
688
- Enabled: true
689
- Rake/DuplicateNamespace:
690
- Enabled: true
691
- Rake/DuplicateTask:
692
- Enabled: true
693
- Rake/MethodDefinitionInTask:
694
- Enabled: true
695
-
696
- RSpec/AroundBlock:
697
- Enabled: true
698
- RSpec/Be:
699
- Enabled: true
700
- RSpec/BeEql:
701
- Enabled: true
702
- RSpec/BeforeAfterAll:
703
- Enabled: true
704
- RSpec/Capybara/CurrentPathExpectation:
705
- Enabled: true
706
- RSpec/Capybara/FeatureMethods:
707
- Enabled: true
708
- RSpec/Capybara/VisibilityMatcher:
709
- Enabled: true
710
- RSpec/ContextMethod:
711
- Enabled: true
712
- RSpec/DescribeClass:
713
- Enabled: true
714
- Exclude:
715
- - spec/system/**/*
716
- - spec/tasks/**/*
717
- RSpec/DescribeMethod:
718
- Enabled: true
719
- RSpec/DescribeSymbol:
720
- Enabled: true
721
- RSpec/DescribedClass:
722
- Enabled: true
723
- RSpec/DescribedClassModuleWrapping:
724
- Enabled: true
725
- RSpec/EmptyExampleGroup:
726
- Enabled: true
727
- Exclude:
728
- - spec/requests/api_v2/**/*
729
- RSpec/EmptyHook:
730
- Enabled: true
731
- RSpec/EmptyLineAfterExample:
732
- Enabled: true
733
- RSpec/EmptyLineAfterExampleGroup:
734
- Enabled: true
735
- RSpec/ExampleWithoutDescription:
736
- Enabled: true
737
- RSpec/ExampleWording:
738
- Enabled: true
739
- RSpec/ExcessiveDocstringSpacing:
740
- Enabled: true
741
- RSpec/ExpectInHook:
742
- Enabled: true
743
- RSpec/ExpectOutput:
744
- Enabled: true
745
- RSpec/FactoryBot/AttributeDefinedStatically:
746
- Enabled: true
747
- RSpec/FactoryBot/CreateList:
748
- Enabled: true
749
- RSpec/FactoryBot/FactoryClassName:
750
- Enabled: true
751
- RSpec/FactoryBot/SyntaxMethods:
752
- Enabled: true
753
- RSpec/FilePath:
754
- Enabled: true
755
- IgnoreMethods: true
756
- Exclude:
757
- - spec/requests/api_v2/**/*
758
- RSpec/Focus:
759
- Enabled: true
760
- RSpec/HooksBeforeExamples:
761
- Enabled: true
762
- RSpec/IdenticalEqualityAssertion:
763
- Enabled: true
764
- RSpec/InstanceSpy:
765
- Enabled: true
766
- RSpec/InstanceVariable:
767
- Enabled: true
768
- RSpec/ItBehavesLike:
769
- Enabled: true
770
- RSpec/IteratedExpectation:
771
- Enabled: true
772
- RSpec/LeakyConstantDeclaration:
773
- Enabled: true
774
- RSpec/LetBeforeExamples:
775
- Enabled: true
776
- RSpec/LetSetup:
777
- Enabled: true
778
- RSpec/MultipleDescribes:
779
- Enabled: true
780
- RSpec/MultipleSubjects:
781
- Enabled: true
782
- RSpec/OverwritingSetup:
783
- Enabled: true
784
- RSpec/Rails/AvoidSetupHook:
785
- Enabled: true
786
- RSpec/Rails/HttpStatus:
787
- Enabled: true
788
- RSpec/ReceiveCounts:
789
- Enabled: true
790
- RSpec/ReceiveNever:
791
- Enabled: true
792
- RSpec/RepeatedDescription:
793
- Enabled: true
794
- RSpec/RepeatedExample:
795
- Enabled: true
796
- RSpec/RepeatedExampleGroupBody:
797
- Enabled: true
798
- RSpec/RepeatedExampleGroupDescription:
799
- Enabled: true
800
- RSpec/ScatteredLet:
801
- Enabled: true
802
- RSpec/ScatteredSetup:
803
- Enabled: true
804
- RSpec/SharedContext:
805
- Enabled: true
806
- RSpec/SharedExamples:
807
- Enabled: true
808
- RSpec/SingleArgumentMessageChain:
809
- Enabled: true
810
- RSpec/StubbedMock:
811
- Enabled: true
812
- RSpec/SubjectDeclaration:
813
- Enabled: true
814
- RSpec/VariableDefinition:
815
- Enabled: true
816
- RSpec/VariableName:
817
- Enabled: true
818
- RSpec/VerifiedDoubles:
819
- Enabled: true
820
- RSpec/VoidExpect:
821
- Enabled: true
822
- RSpec/Yield:
823
- Enabled: true
824
-
825
- Security/Eval:
826
- Enabled: true
827
- Security/IoMethods:
828
- Enabled: true
829
- Security/JSONLoad:
830
- Enabled: true
831
- Security/MarshalLoad:
832
- Enabled: true
833
- Security/Open:
834
- Enabled: true
835
- Security/YAMLLoad:
836
- Enabled: true
837
10
 
838
- Style/AccessorGrouping:
839
- Enabled: true
840
- Style/Alias:
841
- Enabled: true
842
- EnforcedStyle: prefer_alias_method
843
- Style/AndOr:
844
- Enabled: true
845
- Style/ArgumentsForwarding:
846
- Enabled: true
847
- Style/ArrayCoercion:
848
- Enabled: true
849
- Style/ArrayJoin:
850
- Enabled: true
851
- Style/Attr:
852
- Enabled: true
853
- Style/AutoResourceCleanup:
854
- Enabled: true
855
- Style/BarePercentLiterals:
856
- Enabled: true
857
- Style/BeginBlock:
858
- Enabled: true
859
- Style/BisectedAttrAccessor:
860
- Enabled: true
861
- Style/BlockComments:
862
- Enabled: true
863
- Exclude:
864
- - support/**/*
865
- Style/BlockDelimiters:
866
- Enabled: true
867
- Exclude:
868
- - spec/**/*
869
- Style/CaseLikeIf:
870
- Enabled: true
871
- Style/CharacterLiteral:
872
- Enabled: true
873
- Style/ClassCheck:
874
- Enabled: true
875
- Style/ClassEqualityComparison:
876
- Enabled: true
877
- Style/ClassMethods:
878
- Enabled: true
879
- Style/CollectionCompact:
880
- Enabled: true
881
- Style/CollectionMethods:
882
- Enabled: true
883
- PreferredMethods:
884
- collect: 'map'
885
- collect!: 'map!'
886
- detect: 'find'
887
- find_all: 'select'
888
- Style/ColonMethodCall:
889
- Enabled: true
890
- Style/ColonMethodDefinition:
891
- Enabled: true
892
- Style/CombinableLoops:
893
- Enabled: true
894
- Style/CommentAnnotation:
895
- Enabled: true
896
- Style/ConditionalAssignment:
897
- Enabled: true
898
- Style/DateTime:
899
- Enabled: true
900
- Style/DefWithParentheses:
901
- Enabled: true
902
- Style/Dir:
903
- Enabled: true
904
- Style/DocumentDynamicEvalDefinition:
905
- Enabled: true
906
- Style/EachForSimpleLoop:
907
- Enabled: true
908
- Style/EachWithObject:
909
- Enabled: true
910
- Style/EmptyBlockParameter:
911
- Enabled: true
912
- Style/EmptyElse:
913
- Enabled: true
914
- Style/EmptyLambdaParameter:
915
- Enabled: true
916
- Style/EmptyLiteral:
917
- Enabled: true
918
- Style/EndBlock:
919
- Enabled: true
920
- Style/EndlessMethod:
921
- Enabled: true
922
- Style/EvalWithLocation:
923
- Enabled: true
924
- Style/EvenOdd:
925
- Enabled: true
926
- Style/ExpandPathArguments:
927
- Enabled: true
928
- Style/ExplicitBlockArgument:
929
- Enabled: true
930
- Style/ExponentialNotation:
931
- Enabled: true
932
- Style/FileRead:
933
- Enabled: true
934
- Style/FileWrite:
935
- Enabled: true
936
- Style/FloatDivision:
937
- Enabled: true
938
- Style/For:
939
- Enabled: true
940
- Style/GlobalStdStream:
941
- Enabled: true
942
- Style/GlobalVars:
943
- Enabled: true
944
- Style/HashConversion:
945
- Enabled: true
946
- Style/HashEachMethods:
947
- Enabled: true
948
- Style/HashExcept:
949
- Enabled: true
950
- Style/HashLikeCase:
951
- Enabled: true
952
- Style/HashSyntax:
953
- Enabled: true
954
- EnforcedShorthandSyntax: never
955
- Style/HashTransformKeys:
956
- Enabled: true
957
- Style/HashTransformValues:
958
- Enabled: true
959
- Style/IdenticalConditionalBranches:
960
- Enabled: true
961
- Style/IfInsideElse:
962
- Enabled: true
963
- Style/IfUnlessModifierOfIfUnless:
964
- Enabled: true
965
- Style/IfWithBooleanLiteralBranches:
966
- Enabled: true
967
- Style/IfWithSemicolon:
968
- Enabled: true
969
- Style/InfiniteLoop:
970
- Enabled: true
971
- Style/InverseMethods:
972
- Enabled: true
973
- Style/KeywordParametersOrder:
974
- Enabled: true
975
- Style/LambdaCall:
976
- Enabled: true
977
- Style/LineEndConcatenation:
978
- Enabled: true
979
- Style/MapToHash:
980
- Enabled: true
981
- Style/MethodCallWithoutArgsParentheses:
982
- Enabled: true
983
- Style/MethodDefParentheses:
984
- Enabled: true
985
- Style/MinMax:
986
- Enabled: true
987
- Style/MissingRespondToMissing:
988
- Enabled: true
989
- Style/MixinGrouping:
990
- Enabled: true
991
- Style/MixinUsage:
992
- Enabled: true
993
- Style/ModuleFunction:
994
- Enabled: true
995
- Style/MultilineIfThen:
996
- Enabled: true
997
- Style/MultilineInPatternThen:
998
- Enabled: true
999
- Style/MultilineMemoization:
1000
- Enabled: true
1001
- Style/MultilineMethodSignature:
1002
- Enabled: true
1003
- Style/MultilineWhenThen:
1004
- Enabled: true
1005
- Style/MultipleComparison:
1006
- Enabled: true
1007
- Style/MutableConstant:
1008
- Enabled: true
1009
- Style/NegatedIf:
1010
- Enabled: true
1011
- Style/NegatedIfElseCondition:
1012
- Enabled: true
1013
- Style/NegatedUnless:
1014
- Enabled: true
1015
- Style/NegatedWhile:
1016
- Enabled: true
1017
- Style/NestedModifier:
1018
- Enabled: true
1019
- Style/NestedTernaryOperator:
1020
- Enabled: true
1021
- Style/Next:
1022
- Enabled: true
1023
- Style/NilComparison:
1024
- Enabled: true
1025
- Style/NilLambda:
1026
- Enabled: true
1027
- Style/NonNilCheck:
1028
- Enabled: true
1029
- Style/Not:
1030
- Enabled: true
1031
- Style/NumberedParameters:
1032
- Enabled: true
1033
- Style/NumberedParametersLimit:
1034
- Enabled: true
1035
- Style/NumericLiteralPrefix:
1036
- Enabled: true
1037
- Style/NumericLiterals:
1038
- Enabled: true
1039
- Style/OneLineConditional:
1040
- Enabled: true
1041
- Style/OpenStructUse:
1042
- Enabled: true
1043
- Style/OptionalArguments:
1044
- Enabled: true
1045
- Style/OptionalBooleanParameter:
1046
- Enabled: true
1047
- Style/ParenthesesAroundCondition:
1048
- Enabled: true
1049
- Style/PercentQLiterals:
1050
- Enabled: true
1051
- Style/PerlBackrefs:
1052
- Enabled: true
1053
- Style/PreferredHashMethods:
1054
- Enabled: true
1055
- Style/Proc:
1056
- Enabled: true
1057
- Style/RaiseArgs:
1058
- Enabled: true
1059
- Style/RedundantArgument:
1060
- Enabled: true
1061
- Style/RedundantAssignment:
1062
- Enabled: true
1063
- Style/RedundantBegin:
1064
- Enabled: true
1065
- Style/RedundantCapitalW:
1066
- Enabled: true
1067
- Style/RedundantCondition:
1068
- Enabled: true
1069
- Style/RedundantConditional:
1070
- Enabled: true
1071
- Style/RedundantException:
1072
- Enabled: true
1073
- Style/RedundantFetchBlock:
1074
- Enabled: true
1075
- Style/RedundantFileExtensionInRequire:
1076
- Enabled: true
1077
- Style/RedundantFreeze:
1078
- Enabled: true
1079
- Style/RedundantInterpolation:
1080
- Enabled: true
1081
- Style/RedundantParentheses:
1082
- Enabled: true
1083
- Style/RedundantPercentQ:
1084
- Enabled: true
1085
- Style/RedundantRegexpCharacterClass:
1086
- Enabled: true
1087
- Style/RedundantRegexpEscape:
1088
- Enabled: true
1089
- Style/RedundantReturn:
1090
- Enabled: true
1091
- Style/RedundantSelf:
1092
- Enabled: true
1093
- Style/RedundantSelfAssignment:
1094
- Enabled: true
1095
- Style/RedundantSelfAssignmentBranch:
1096
- Enabled: true
1097
- Style/RedundantSort:
1098
- Enabled: true
1099
- Style/RedundantSortBy:
1100
- Enabled: true
1101
- Style/RescueStandardError:
1102
- Enabled: true
1103
- Style/ReturnNil:
1104
- Enabled: true
1105
- Style/SafeNavigation:
1106
- Enabled: true
1107
- Style/Sample:
1108
- Enabled: true
1109
- Style/SelectByRegexp:
1110
- Enabled: true
1111
- Style/SelfAssignment:
1112
- Enabled: true
1113
- Style/SignalException:
1114
- Enabled: true
1115
- Style/SingleArgumentDig:
1116
- Enabled: true
1117
- Style/SlicingWithRange:
1118
- Enabled: true
1119
- Style/SoleNestedConditional:
1120
- Enabled: true
1121
- Style/SpecialGlobalVars:
1122
- Enabled: true
1123
- Style/StabbyLambdaParentheses:
1124
- Enabled: true
1125
- Style/StaticClass:
1126
- Enabled: true
1127
- Style/StderrPuts:
1128
- Enabled: true
1129
- Style/StringChars:
1130
- Enabled: true
1131
- Style/StringConcatenation:
1132
- Enabled: true
1133
- Style/StringMethods:
1134
- Enabled: true
1135
- Style/Strip:
1136
- Enabled: true
1137
- Style/StructInheritance:
1138
- Enabled: true
1139
- Style/SwapValues:
1140
- Enabled: true
1141
- Style/SymbolLiteral:
1142
- Enabled: true
1143
- Style/SymbolProc:
1144
- Enabled: true
1145
- Style/TopLevelMethodDefinition:
1146
- Enabled: true
1147
- Style/TrailingBodyOnClass:
1148
- Enabled: true
1149
- Style/TrailingBodyOnModule:
1150
- Enabled: true
1151
- Style/TrailingCommaInBlockArgs:
1152
- Enabled: true
1153
- Style/TrivialAccessors:
1154
- Enabled: true
1155
- Style/UnlessElse:
1156
- Enabled: true
1157
- Style/UnpackFirst:
1158
- Enabled: true
1159
- Style/VariableInterpolation:
1160
- Enabled: true
1161
- Style/WhileUntilDo:
1162
- Enabled: true
1163
- Style/YodaCondition:
1164
- Enabled: true
1165
- Style/ZeroLengthPredicate:
1166
- Enabled: true
11
+ inherit_from:
12
+ - config/bundler.yml
13
+ - config/discourse.yml
14
+ - config/gitlab-security.yml
15
+ - config/graphql.yml
16
+ - config/layout.yml
17
+ - config/lint.yml
18
+ - config/metrics.yml
19
+ - config/naming.yml
20
+ - config/performance.yml
21
+ - config/rails.yml
22
+ - config/rake.yml
23
+ - config/rspec.yml
24
+ - config/security.yml
25
+ - config/style.yml
26
+
27
+ inherit_mode:
28
+ merge:
29
+ - Exclude