bixby 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/bixby_default.yml ADDED
@@ -0,0 +1,919 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.1
3
+ DisabledByDefault: true
4
+ DisplayCopNames: true
5
+ Include:
6
+ - '**/Rakefile'
7
+ - '**/config.ru'
8
+ Exclude:
9
+ - 'db/**/*'
10
+ - 'script/**/*'
11
+ - 'vendor/**/*'
12
+
13
+ inherit_from:
14
+ - bixby_rails_enabled.yml
15
+ - bixby_rspec_enabled.yml
16
+
17
+ # These are all the cops that are enabled in the default configuration.
18
+
19
+ Style/AccessorMethodName:
20
+ Enabled: true
21
+
22
+ Style/Alias:
23
+ Enabled: true
24
+
25
+ Style/AlignArray:
26
+ Enabled: true
27
+
28
+ Style/AlignHash:
29
+ Enabled: true
30
+
31
+ Style/AlignParameters:
32
+ Enabled: true
33
+
34
+ Style/AndOr:
35
+ Enabled: true
36
+
37
+ Style/ArrayJoin:
38
+ Enabled: true
39
+
40
+ Style/AsciiComments:
41
+ Enabled: true
42
+
43
+ Style/AsciiIdentifiers:
44
+ Enabled: true
45
+
46
+ Style/Attr:
47
+ Enabled: true
48
+
49
+ Style/BeginBlock:
50
+ Enabled: true
51
+
52
+ Style/BarePercentLiterals:
53
+ Enabled: true
54
+
55
+ Style/BlockComments:
56
+ Enabled: true
57
+
58
+ Style/BlockEndNewline:
59
+ Enabled: true
60
+
61
+ Style/BlockDelimiters:
62
+ Enabled: true
63
+
64
+ Style/BracesAroundHashParameters:
65
+ Enabled: true
66
+
67
+ Style/CaseEquality:
68
+ Enabled: true
69
+
70
+ Style/CaseIndentation:
71
+ Enabled: true
72
+
73
+ Style/CharacterLiteral:
74
+ Enabled: true
75
+
76
+ Style/ClassAndModuleCamelCase:
77
+ Enabled: true
78
+
79
+ Style/ClassCheck:
80
+ Enabled: true
81
+
82
+ Style/ClassMethods:
83
+ Enabled: true
84
+
85
+ Style/ClassVars:
86
+ Enabled: true
87
+
88
+ Style/ClosingParenthesisIndentation:
89
+ Enabled: true
90
+
91
+ Style/ColonMethodCall:
92
+ Enabled: true
93
+
94
+ Style/CollectionMethods:
95
+ PreferredMethods:
96
+ collect: 'map'
97
+ collect!: 'map!'
98
+ inject: 'reduce'
99
+ detect: 'find'
100
+ find_all: 'select'
101
+ Enabled: false
102
+
103
+ Style/CommandLiteral:
104
+ Enabled: true
105
+
106
+ Style/CommentAnnotation:
107
+ Enabled: true
108
+
109
+ Style/CommentIndentation:
110
+ Enabled: true
111
+
112
+ Style/ConditionalAssignment:
113
+ Enabled: true
114
+
115
+ Style/ConstantName:
116
+ Enabled: true
117
+
118
+ Style/DefWithParentheses:
119
+ Enabled: true
120
+
121
+ Style/Documentation:
122
+ Enabled: false
123
+ Exclude:
124
+ - 'spec/**/*'
125
+ - 'test/**/*'
126
+
127
+ Style/DotPosition:
128
+ Enabled: true
129
+
130
+ Style/DoubleNegation:
131
+ Enabled: true
132
+
133
+ Style/EachForSimpleLoop:
134
+ Enabled: true
135
+
136
+ Style/EachWithObject:
137
+ Enabled: true
138
+
139
+ Style/ElseAlignment:
140
+ Enabled: true
141
+
142
+ Style/EmptyElse:
143
+ Enabled: true
144
+
145
+ Style/EmptyCaseCondition:
146
+ Enabled: true
147
+
148
+ Style/EmptyLineBetweenDefs:
149
+ Enabled: true
150
+
151
+ Style/EmptyLines:
152
+ Enabled: true
153
+
154
+ Style/EmptyLinesAroundAccessModifier:
155
+ Enabled: true
156
+
157
+ Style/EmptyLinesAroundBlockBody:
158
+ Enabled: true
159
+
160
+ Style/EmptyLinesAroundClassBody:
161
+ Enabled: true
162
+
163
+ Style/EmptyLinesAroundModuleBody:
164
+ Enabled: true
165
+
166
+ Style/EmptyLinesAroundMethodBody:
167
+ Enabled: true
168
+
169
+ Style/EmptyLiteral:
170
+ Enabled: true
171
+
172
+ Style/EmptyMethod:
173
+ Enabled: true
174
+
175
+ Style/EndBlock:
176
+ Enabled: true
177
+
178
+ Style/EndOfLine:
179
+ Enabled: true
180
+
181
+ Style/EvenOdd:
182
+ Enabled: true
183
+
184
+ Style/ExtraSpacing:
185
+ Enabled: true
186
+
187
+ Style/FileName:
188
+ Enabled: true
189
+
190
+ Style/FrozenStringLiteralComment:
191
+ Enabled: true
192
+
193
+ Style/InitialIndentation:
194
+ Enabled: true
195
+
196
+ Style/FirstParameterIndentation:
197
+ Enabled: true
198
+
199
+ Style/FlipFlop:
200
+ Enabled: true
201
+
202
+ Style/For:
203
+ Enabled: true
204
+
205
+ Style/FormatString:
206
+ Enabled: true
207
+
208
+ Style/GlobalVars:
209
+ Enabled: true
210
+
211
+ Style/GuardClause:
212
+ Enabled: true
213
+
214
+ Style/HashSyntax:
215
+ Enabled: true
216
+
217
+ Style/IfInsideElse:
218
+ Enabled: true
219
+
220
+ Style/IfUnlessModifier:
221
+ Enabled: true
222
+
223
+ Style/IfUnlessModifierOfIfUnless:
224
+ Enabled: true
225
+
226
+ Style/IfWithSemicolon:
227
+ Enabled: true
228
+
229
+ Style/IndentationConsistency:
230
+ SupportedStyles:
231
+ - normal
232
+ - rails
233
+ EnforcedStyle: rails
234
+
235
+ Style/IndentationWidth:
236
+ Enabled: true
237
+
238
+ Style/IdenticalConditionalBranches:
239
+ Enabled: true
240
+
241
+ Style/IndentArray:
242
+ Enabled: true
243
+
244
+ Style/IndentAssignment:
245
+ Enabled: true
246
+
247
+ Style/IndentHash:
248
+ Enabled: true
249
+
250
+ Style/InfiniteLoop:
251
+ Enabled: true
252
+
253
+ Style/Lambda:
254
+ Enabled: true
255
+
256
+ Style/SpaceInLambdaLiteral:
257
+ Enabled: true
258
+
259
+ Style/LambdaCall:
260
+ Enabled: true
261
+
262
+ Style/LeadingCommentSpace:
263
+ Enabled: true
264
+
265
+ Style/LineEndConcatenation:
266
+ Enabled: true
267
+
268
+ Style/MethodCallWithoutArgsParentheses:
269
+ Enabled: true
270
+
271
+ Style/MethodDefParentheses:
272
+ Enabled: true
273
+
274
+ Style/MethodName:
275
+ Enabled: true
276
+
277
+ Style/MethodMissing:
278
+ Enabled: true
279
+
280
+ Style/ModuleFunction:
281
+ Enabled: true
282
+
283
+ Style/MultilineArrayBraceLayout:
284
+ Enabled: true
285
+
286
+ Style/MultilineBlockChain:
287
+ Enabled: true
288
+
289
+ Style/MultilineBlockLayout:
290
+ Enabled: true
291
+
292
+ Style/MultilineHashBraceLayout:
293
+ Enabled: true
294
+
295
+ Style/MultilineIfThen:
296
+ Enabled: true
297
+
298
+ Style/MultilineIfModifier:
299
+ Enabled: true
300
+
301
+ Style/MultilineMemoization:
302
+ Enabled: true
303
+
304
+ Style/MultilineMethodCallBraceLayout:
305
+ Enabled: true
306
+
307
+ Style/MultilineMethodCallIndentation:
308
+ Enabled: true
309
+
310
+ Style/MultilineMethodDefinitionBraceLayout:
311
+ Enabled: true
312
+
313
+ Style/MultilineOperationIndentation:
314
+ Enabled: true
315
+
316
+ Style/MultilineTernaryOperator:
317
+ Enabled: true
318
+
319
+ Style/MutableConstant:
320
+ Enabled: true
321
+
322
+ Style/NegatedIf:
323
+ Enabled: true
324
+
325
+ Style/NegatedWhile:
326
+ Enabled: true
327
+
328
+ Style/NestedModifier:
329
+ Enabled: true
330
+
331
+ Style/NestedParenthesizedCalls:
332
+ Enabled: true
333
+
334
+ Style/NestedTernaryOperator:
335
+ Enabled: true
336
+
337
+ Style/Next:
338
+ Enabled: true
339
+
340
+ Style/NilComparison:
341
+ Enabled: true
342
+
343
+ Style/NonNilCheck:
344
+ Enabled: true
345
+
346
+ Style/Not:
347
+ Enabled: true
348
+
349
+ Style/NumericLiterals:
350
+ Enabled: true
351
+
352
+ Style/NumericLiteralPrefix:
353
+ Enabled: true
354
+
355
+ Style/NumericPredicate:
356
+ # This will change to a new method call which isn't guaranteed to be on the
357
+ # object. Switching these methods has to be done with knowledge of the types
358
+ # of the variables which rubocop doesn't have.
359
+ AutoCorrect: false
360
+ Enabled: true
361
+
362
+ Style/OneLineConditional:
363
+ Enabled: true
364
+
365
+ Style/OpMethod:
366
+ Enabled: true
367
+
368
+ Style/OptionalArguments:
369
+ Enabled: true
370
+
371
+ Style/ParallelAssignment:
372
+ Enabled: true
373
+
374
+ Style/ParenthesesAroundCondition:
375
+ Enabled: true
376
+
377
+ Style/PercentLiteralDelimiters:
378
+ Enabled: true
379
+
380
+ Style/PercentQLiterals:
381
+ Enabled: true
382
+
383
+ Style/PerlBackrefs:
384
+ Enabled: true
385
+
386
+ Style/PredicateName:
387
+ Enabled: true
388
+
389
+ Style/PreferredHashMethods:
390
+ Enabled: true
391
+
392
+ Style/Proc:
393
+ Enabled: true
394
+
395
+ Style/RaiseArgs:
396
+ Enabled: true
397
+
398
+ Style/RedundantBegin:
399
+ Enabled: true
400
+
401
+ Style/RedundantException:
402
+ Enabled: true
403
+
404
+ Style/RedundantFreeze:
405
+ Enabled: true
406
+
407
+ Style/RedundantParentheses:
408
+ Enabled: true
409
+
410
+ Style/RedundantReturn:
411
+ Enabled: true
412
+
413
+ Style/RedundantSelf:
414
+ Enabled: true
415
+
416
+ Style/RescueEnsureAlignment:
417
+ Enabled: true
418
+
419
+ Style/RescueModifier:
420
+ Enabled: true
421
+
422
+ Style/SafeNavigation:
423
+ Enabled: true
424
+
425
+ Style/SelfAssignment:
426
+ Enabled: true
427
+
428
+ Style/Semicolon:
429
+ Enabled: true
430
+
431
+ Style/SignalException:
432
+ Enabled: true
433
+
434
+ Style/SingleLineMethods:
435
+ Enabled: true
436
+
437
+ Style/SpaceBeforeFirstArg:
438
+ Enabled: true
439
+
440
+ Style/SpaceAfterColon:
441
+ Enabled: true
442
+
443
+ Style/SpaceAfterComma:
444
+ Enabled: true
445
+
446
+ Style/SpaceAfterMethodName:
447
+ Enabled: true
448
+
449
+ Style/SpaceAfterNot:
450
+ Enabled: true
451
+
452
+ Style/SpaceAfterSemicolon:
453
+ Enabled: true
454
+
455
+ Style/SpaceBeforeBlockBraces:
456
+ Enabled: true
457
+
458
+ Style/SpaceBeforeComma:
459
+ Enabled: true
460
+
461
+ Style/SpaceBeforeComment:
462
+ Enabled: true
463
+
464
+ Style/SpaceBeforeSemicolon:
465
+ Enabled: true
466
+
467
+ Style/SpaceInsideBlockBraces:
468
+ Enabled: true
469
+
470
+ Style/SpaceAroundBlockParameters:
471
+ Enabled: true
472
+
473
+ Style/SpaceAroundEqualsInParameterDefault:
474
+ Enabled: true
475
+
476
+ Style/SpaceAroundKeyword:
477
+ Enabled: true
478
+
479
+ Style/SpaceAroundOperators:
480
+ Enabled: true
481
+
482
+ Style/SpaceInsideArrayPercentLiteral:
483
+ Enabled: true
484
+
485
+ Style/SpaceInsidePercentLiteralDelimiters:
486
+ Enabled: true
487
+
488
+ Style/SpaceInsideBrackets:
489
+ Enabled: true
490
+
491
+ Style/SpaceInsideHashLiteralBraces:
492
+ Enabled: true
493
+
494
+ Style/SpaceInsideParens:
495
+ Enabled: true
496
+
497
+ Style/SpaceInsideRangeLiteral:
498
+ Enabled: true
499
+
500
+ Style/SpaceInsideStringInterpolation:
501
+ Enabled: true
502
+
503
+ Style/SpecialGlobalVars:
504
+ Enabled: true
505
+
506
+ Style/StabbyLambdaParentheses:
507
+ Enabled: true
508
+
509
+ Style/StringLiteralsInInterpolation:
510
+ Enabled: true
511
+
512
+ Style/StructInheritance:
513
+ Enabled: true
514
+
515
+ Style/SymbolLiteral:
516
+ Enabled: true
517
+
518
+ Style/SymbolProc:
519
+ Enabled: true
520
+
521
+ Style/Tab:
522
+ Enabled: true
523
+
524
+ Style/TernaryParentheses:
525
+ Enabled: true
526
+
527
+ Style/TrailingBlankLines:
528
+ Enabled: true
529
+
530
+ Style/TrailingCommaInArguments:
531
+ Enabled: true
532
+
533
+ Style/TrailingCommaInLiteral:
534
+ Enabled: true
535
+
536
+ Style/TrailingWhitespace:
537
+ Enabled: true
538
+
539
+ Style/TrivialAccessors:
540
+ Enabled: true
541
+
542
+ Style/UnlessElse:
543
+ Enabled: true
544
+
545
+ Style/UnneededCapitalW:
546
+ Enabled: true
547
+
548
+ Style/UnneededInterpolation:
549
+ Enabled: true
550
+
551
+ Style/UnneededPercentQ:
552
+ Enabled: true
553
+
554
+ Style/TrailingUnderscoreVariable:
555
+ AllowNamedUnderscoreVariables: true
556
+ Enabled: true
557
+
558
+ Style/VariableInterpolation:
559
+ Enabled: true
560
+
561
+ Style/VariableName:
562
+ Enabled: true
563
+
564
+ Style/VariableNumber:
565
+ Enabled: true
566
+
567
+ Style/WhenThen:
568
+ Enabled: true
569
+
570
+ Style/WhileUntilDo:
571
+ Enabled: true
572
+
573
+ Style/WhileUntilModifier:
574
+ Enabled: true
575
+
576
+ Style/ZeroLengthPredicate:
577
+ Enabled: true
578
+
579
+ #################### Metrics ###############################
580
+
581
+ Metrics/AbcSize:
582
+ Enabled: true
583
+ Max: 28
584
+
585
+ Metrics/BlockNesting:
586
+ Enabled: true
587
+
588
+ Metrics/ClassLength:
589
+ Enabled: true
590
+
591
+ Metrics/ModuleLength:
592
+ Enabled: true
593
+
594
+ Metrics/CyclomaticComplexity:
595
+ Enabled: true
596
+
597
+ Metrics/LineLength:
598
+ Enabled: true
599
+ Max: 200
600
+
601
+ Metrics/MethodLength:
602
+ Enabled: true
603
+ Max: 14
604
+
605
+ Metrics/BlockLength:
606
+ Enabled: true
607
+
608
+ Metrics/ParameterLists:
609
+ Enabled: true
610
+
611
+ Metrics/PerceivedComplexity:
612
+ Enabled: true
613
+
614
+ #################### Lint ##################################
615
+ ### Warnings
616
+
617
+ Lint/AmbiguousOperator:
618
+ Enabled: true
619
+
620
+ Lint/AmbiguousRegexpLiteral:
621
+ Enabled: true
622
+
623
+ Lint/AssignmentInCondition:
624
+ Enabled: true
625
+
626
+ Lint/BlockAlignment:
627
+ Enabled: true
628
+
629
+ Lint/CircularArgumentReference:
630
+ Enabled: true
631
+
632
+ Lint/ConditionPosition:
633
+ Enabled: true
634
+
635
+ Lint/Debugger:
636
+ Enabled: true
637
+
638
+ Lint/DefEndAlignment:
639
+ Enabled: true
640
+
641
+ Lint/DeprecatedClassMethods:
642
+ Enabled: true
643
+
644
+ Lint/DuplicateCaseCondition:
645
+ Enabled: true
646
+
647
+ Lint/DuplicateMethods:
648
+ Enabled: true
649
+
650
+ Lint/DuplicatedKey:
651
+ Enabled: true
652
+
653
+ Lint/EachWithObjectArgument:
654
+ Enabled: true
655
+
656
+ Lint/ElseLayout:
657
+ Enabled: true
658
+
659
+ Lint/EmptyEnsure:
660
+ Enabled: true
661
+ AutoCorrect: false
662
+
663
+ Lint/EmptyExpression:
664
+ Enabled: true
665
+
666
+ Lint/EmptyInterpolation:
667
+ Enabled: true
668
+
669
+ Lint/EmptyWhen:
670
+ Enabled: true
671
+
672
+ Lint/EndAlignment:
673
+ Enabled: true
674
+
675
+ Lint/EndInMethod:
676
+ Enabled: true
677
+
678
+ Lint/EnsureReturn:
679
+ Enabled: true
680
+
681
+ Lint/FloatOutOfRange:
682
+ Enabled: true
683
+
684
+ Lint/FormatParameterMismatch:
685
+ Enabled: true
686
+
687
+ Lint/HandleExceptions:
688
+ Enabled: true
689
+
690
+ Lint/ImplicitStringConcatenation:
691
+ Enabled: true
692
+
693
+ Lint/IneffectiveAccessModifier:
694
+ Enabled: true
695
+
696
+ Lint/InheritException:
697
+ Enabled: true
698
+
699
+ Lint/InvalidCharacterLiteral:
700
+ Enabled: true
701
+
702
+ Lint/LiteralInCondition:
703
+ Enabled: true
704
+
705
+ Lint/LiteralInInterpolation:
706
+ Enabled: true
707
+
708
+ Lint/Loop:
709
+ Enabled: true
710
+
711
+ Lint/MultipleCompare:
712
+ Enabled: true
713
+
714
+ Lint/NestedMethodDefinition:
715
+ Enabled: true
716
+
717
+ Lint/NextWithoutAccumulator:
718
+ Enabled: true
719
+
720
+ Lint/NonLocalExitFromIterator:
721
+ Enabled: true
722
+
723
+ Lint/ParenthesesAsGroupedExpression:
724
+
725
+ Enabled: true
726
+
727
+ Lint/PercentStringArray:
728
+ Enabled: true
729
+
730
+ Lint/PercentSymbolArray:
731
+ Enabled: true
732
+
733
+ Lint/RandOne:
734
+ Enabled: true
735
+
736
+ Lint/RequireParentheses:
737
+ Enabled: true
738
+
739
+ Lint/RescueException:
740
+ Enabled: true
741
+
742
+ Lint/SafeNavigationChain:
743
+ Enabled: true
744
+
745
+ Lint/ShadowedException:
746
+ Enabled: true
747
+
748
+ Lint/ShadowingOuterLocalVariable:
749
+ Enabled: true
750
+
751
+ Lint/StringConversionInInterpolation:
752
+ Enabled: true
753
+
754
+ Lint/UnderscorePrefixedVariableName:
755
+ Enabled: true
756
+
757
+ Lint/UnifiedInteger:
758
+ Enabled: true
759
+
760
+ Lint/UnneededDisable:
761
+ Enabled: true
762
+
763
+ Lint/UnneededSplatExpansion:
764
+ Enabled: true
765
+
766
+ Lint/UnusedBlockArgument:
767
+ Enabled: true
768
+
769
+ Lint/UnusedMethodArgument:
770
+ Enabled: true
771
+
772
+ Lint/UnreachableCode:
773
+ Enabled: true
774
+
775
+ Lint/UselessAccessModifier:
776
+ Enabled: true
777
+ ContextCreatingMethods: []
778
+ MethodCreatingMethods: []
779
+
780
+ Lint/UselessAssignment:
781
+ Enabled: true
782
+
783
+ Lint/UselessComparison:
784
+ Enabled: true
785
+
786
+ Lint/UselessElseWithoutRescue:
787
+ Enabled: true
788
+
789
+ Lint/UselessSetterCall:
790
+ Enabled: true
791
+
792
+ Lint/Void:
793
+ Enabled: true
794
+
795
+ #################### Performance ###########################
796
+
797
+ Performance/Casecmp:
798
+ Enabled: true
799
+
800
+ Performance/CaseWhenSplat:
801
+ Enabled: true
802
+
803
+ Performance/Count:
804
+ # This cop has known compatibility issues with `ActiveRecord` and other
805
+ # frameworks. ActiveRecord's `count` ignores the block that is passed to it.
806
+ # For more information, see the documentation in the cop itself.
807
+ # If you understand the known risk, you can disable `SafeMode`.
808
+ SafeMode: true
809
+ Enabled: true
810
+
811
+ Performance/Detect:
812
+ # This cop has known compatibility issues with `ActiveRecord` and other
813
+ # frameworks. `ActiveRecord` does not implement a `detect` method and `find`
814
+ # has its own meaning. Correcting `ActiveRecord` methods with this cop
815
+ # should be considered unsafe.
816
+ SafeMode: true
817
+ Enabled: true
818
+
819
+ Performance/DoubleStartEndWith:
820
+ Enabled: true
821
+
822
+ Performance/EndWith:
823
+ # This will change to a new method call which isn't guaranteed to be on the
824
+ # object. Switching these methods has to be done with knowledge of the types
825
+ # of the variables which rubocop doesn't have.
826
+ AutoCorrect: false
827
+ Enabled: true
828
+
829
+ Performance/FixedSize:
830
+ Enabled: true
831
+
832
+ Performance/FlatMap:
833
+ Enabled: true
834
+ EnabledForFlattenWithoutParams: false
835
+ # If enabled, this cop will warn about usages of
836
+ # `flatten` being called without any parameters.
837
+ # This can be dangerous since `flat_map` will only flatten 1 level, and
838
+ # `flatten` without any parameters can flatten multiple levels.
839
+
840
+ Performance/HashEachMethods:
841
+ Enabled: true
842
+ AutoCorrect: false
843
+
844
+ Performance/LstripRstrip:
845
+ Enabled: true
846
+
847
+ Performance/RangeInclude:
848
+ Enabled: true
849
+
850
+ Performance/RedundantBlockCall:
851
+ Enabled: true
852
+
853
+ Performance/RedundantMatch:
854
+ Enabled: true
855
+
856
+ Performance/RedundantMerge:
857
+ Enabled: true
858
+
859
+ Performance/RedundantSortBy:
860
+ Enabled: true
861
+
862
+ Performance/RegexpMatch:
863
+ Enabled: true
864
+
865
+ Performance/ReverseEach:
866
+ Enabled: true
867
+
868
+ Performance/Sample:
869
+ Enabled: true
870
+
871
+ Performance/Size:
872
+ Enabled: true
873
+
874
+ Performance/CompareWithBlock:
875
+ Enabled: true
876
+
877
+ Performance/StartWith:
878
+ # This will change to a new method call which isn't guaranteed to be on the
879
+ # object. Switching these methods has to be done with knowledge of the types
880
+ # of the variables which rubocop doesn't have.
881
+ AutoCorrect: false
882
+ Enabled: true
883
+
884
+ Performance/StringReplacement:
885
+ Enabled: true
886
+
887
+ Performance/TimesMap:
888
+ Enabled: true
889
+
890
+ #################### Security ##############################
891
+
892
+ Security/Eval:
893
+ Enabled: true
894
+
895
+ Security/JSONLoad:
896
+ Enabled: true
897
+ # Autocorrect here will change to a method that may cause crashes depending
898
+ # on the value of the argument.
899
+ AutoCorrect: false
900
+
901
+ Security/MarshalLoad:
902
+ Enabled: true
903
+
904
+ Security/YAMLLoad:
905
+ Enabled: true
906
+
907
+ #################### Bundler ###############################
908
+
909
+ Bundler/DuplicatedGem:
910
+ Enabled: true
911
+ Include:
912
+ - '**/Gemfile'
913
+ - '**/gems.rb'
914
+
915
+ Bundler/OrderedGems:
916
+ Enabled: true
917
+ Include:
918
+ - '**/Gemfile'
919
+ - '**/gems.rb'