bootboot 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f0ffd98be99f6485f9c7480c1af03185884bc7a3
4
- data.tar.gz: 9c2f985c296d6c1ea93c06a49437b9fd670a1ad8
2
+ SHA256:
3
+ metadata.gz: ce4a0bc591cffa30477add3d47ed3f67ac337aa7840e56121c85b4108919a897
4
+ data.tar.gz: 5ab0c4985da72dd902e001cdac47d17ba728a71d83c6efff9c5ec5c7a4bf45f5
5
5
  SHA512:
6
- metadata.gz: 8992b0f398e049de5dc730d49f39ce35e908828168939583ff5d84362b6bc84d3193548c92f83117473a7887a6e5c22bb7d76c59aca0a52b3b9609b3dc518135
7
- data.tar.gz: c4a6e8932482b1e5dd96f8e3e26e08de41e71f8cc38a0872d696a3702381073ad324440b3e95dde8709910907dfe0fa03937530e9a95287584ae82d6e43c33a3
6
+ metadata.gz: 4ece9c7da79572614362138899178bfad5d40cd6bc390da1337828d0e60efe4e48a2dd865a9594644f1037e7f07dd0a478cbddd7b090981978812606ee5f1a0d
7
+ data.tar.gz: 046f0a7e81267e2e3b85aac7ef922d60cd0e8f820ca1a007add2144498d29eb8ad27191b75d850f4e30e4e9ed2a64954cea679922861945567f44861ae8a1404
@@ -0,0 +1,1179 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'db/schema.rb'
4
+ DisabledByDefault: true
5
+ StyleGuideBaseURL: https://shopify.github.io/ruby-style-guide/
6
+
7
+ Layout/AccessModifierIndentation:
8
+ EnforcedStyle: indent
9
+ SupportedStyles:
10
+ - outdent
11
+ - indent
12
+ IndentationWidth:
13
+
14
+ Style/Alias:
15
+ EnforcedStyle: prefer_alias_method
16
+ SupportedStyles:
17
+ - prefer_alias
18
+ - prefer_alias_method
19
+
20
+ Layout/AlignHash:
21
+ EnforcedHashRocketStyle: key
22
+ EnforcedColonStyle: key
23
+ EnforcedLastArgumentHashStyle: ignore_implicit
24
+ SupportedLastArgumentHashStyles:
25
+ - always_inspect
26
+ - always_ignore
27
+ - ignore_implicit
28
+ - ignore_explicit
29
+
30
+ Layout/AlignParameters:
31
+ EnforcedStyle: with_fixed_indentation
32
+ SupportedStyles:
33
+ - with_first_parameter
34
+ - with_fixed_indentation
35
+ IndentationWidth:
36
+
37
+ Style/AndOr:
38
+ EnforcedStyle: always
39
+ SupportedStyles:
40
+ - always
41
+ - conditionals
42
+
43
+ Style/BarePercentLiterals:
44
+ EnforcedStyle: bare_percent
45
+ SupportedStyles:
46
+ - percent_q
47
+ - bare_percent
48
+
49
+ Style/BlockDelimiters:
50
+ EnforcedStyle: line_count_based
51
+ SupportedStyles:
52
+ - line_count_based
53
+ - semantic
54
+ - braces_for_chaining
55
+ ProceduralMethods:
56
+ - benchmark
57
+ - bm
58
+ - bmbm
59
+ - create
60
+ - each_with_object
61
+ - measure
62
+ - new
63
+ - realtime
64
+ - tap
65
+ - with_object
66
+ FunctionalMethods:
67
+ - let
68
+ - let!
69
+ - subject
70
+ - watch
71
+ IgnoredMethods:
72
+ - lambda
73
+ - proc
74
+ - it
75
+
76
+ Style/BracesAroundHashParameters:
77
+ EnforcedStyle: no_braces
78
+ SupportedStyles:
79
+ - braces
80
+ - no_braces
81
+ - context_dependent
82
+
83
+ Layout/CaseIndentation:
84
+ EnforcedStyle: end
85
+ SupportedStyles:
86
+ - case
87
+ - end
88
+ IndentOneStep: false
89
+ IndentationWidth:
90
+
91
+ Style/ClassAndModuleChildren:
92
+ EnforcedStyle: nested
93
+ SupportedStyles:
94
+ - nested
95
+ - compact
96
+
97
+ Style/ClassCheck:
98
+ EnforcedStyle: is_a?
99
+ SupportedStyles:
100
+ - is_a?
101
+ - kind_of?
102
+
103
+ Style/CommandLiteral:
104
+ EnforcedStyle: percent_x
105
+ SupportedStyles:
106
+ - backticks
107
+ - percent_x
108
+ - mixed
109
+ AllowInnerBackticks: false
110
+
111
+ Style/CommentAnnotation:
112
+ Keywords:
113
+ - TODO
114
+ - FIXME
115
+ - OPTIMIZE
116
+ - HACK
117
+ - REVIEW
118
+
119
+ Style/ConditionalAssignment:
120
+ EnforcedStyle: assign_to_condition
121
+ SupportedStyles:
122
+ - assign_to_condition
123
+ - assign_inside_condition
124
+ SingleLineConditionsOnly: true
125
+
126
+ Layout/DotPosition:
127
+ EnforcedStyle: leading
128
+ SupportedStyles:
129
+ - leading
130
+ - trailing
131
+
132
+ Style/EmptyElse:
133
+ EnforcedStyle: both
134
+ SupportedStyles:
135
+ - empty
136
+ - nil
137
+ - both
138
+
139
+ Layout/EmptyLineBetweenDefs:
140
+ AllowAdjacentOneLineDefs: false
141
+
142
+ Layout/EmptyLinesAroundBlockBody:
143
+ EnforcedStyle: no_empty_lines
144
+ SupportedStyles:
145
+ - empty_lines
146
+ - no_empty_lines
147
+
148
+ Layout/EmptyLinesAroundClassBody:
149
+ EnforcedStyle: no_empty_lines
150
+ SupportedStyles:
151
+ - empty_lines
152
+ - empty_lines_except_namespace
153
+ - no_empty_lines
154
+
155
+ Layout/EmptyLinesAroundModuleBody:
156
+ EnforcedStyle: no_empty_lines
157
+ SupportedStyles:
158
+ - empty_lines
159
+ - empty_lines_except_namespace
160
+ - no_empty_lines
161
+
162
+ Layout/ExtraSpacing:
163
+ AllowForAlignment: true
164
+ ForceEqualSignAlignment: false
165
+
166
+ Naming/FileName:
167
+ Exclude: []
168
+ ExpectMatchingDefinition: false
169
+ Regex:
170
+ IgnoreExecutableScripts: true
171
+
172
+ Layout/FirstParameterIndentation:
173
+ EnforcedStyle: consistent
174
+ SupportedStyles:
175
+ - consistent
176
+ - special_for_inner_method_call
177
+ - special_for_inner_method_call_in_parentheses
178
+ IndentationWidth:
179
+
180
+ Style/For:
181
+ EnforcedStyle: each
182
+ SupportedStyles:
183
+ - for
184
+ - each
185
+
186
+ Style/FormatString:
187
+ EnforcedStyle: format
188
+ SupportedStyles:
189
+ - format
190
+ - sprintf
191
+ - percent
192
+
193
+ Style/FrozenStringLiteralComment:
194
+ Details: >-
195
+ Add `# frozen_string_literal: true` to the top of the file. Frozen string
196
+ literals will become the default in a future Ruby version, and we want to
197
+ make sure we're ready.
198
+ EnforcedStyle: when_needed
199
+ SupportedStyles:
200
+ - when_needed
201
+ - always
202
+ - never
203
+
204
+ Style/GlobalVars:
205
+ AllowedVariables: []
206
+
207
+ Style/HashSyntax:
208
+ EnforcedStyle: ruby19
209
+ SupportedStyles:
210
+ - ruby19
211
+ - hash_rockets
212
+ - no_mixed_keys
213
+ - ruby19_no_mixed_keys
214
+ UseHashRocketsWithSymbolValues: false
215
+ PreferHashRocketsForNonAlnumEndingSymbols: false
216
+
217
+ Layout/IndentationConsistency:
218
+ EnforcedStyle: normal
219
+ SupportedStyles:
220
+ - normal
221
+ - rails
222
+
223
+ Layout/IndentationWidth:
224
+ Width: 2
225
+
226
+ Layout/IndentArray:
227
+ EnforcedStyle: consistent
228
+ SupportedStyles:
229
+ - special_inside_parentheses
230
+ - consistent
231
+ - align_brackets
232
+ IndentationWidth:
233
+
234
+ Layout/IndentAssignment:
235
+ IndentationWidth:
236
+
237
+ Layout/IndentHash:
238
+ EnforcedStyle: consistent
239
+ SupportedStyles:
240
+ - special_inside_parentheses
241
+ - consistent
242
+ - align_braces
243
+ IndentationWidth:
244
+
245
+ Style/LambdaCall:
246
+ EnforcedStyle: call
247
+ SupportedStyles:
248
+ - call
249
+ - braces
250
+
251
+ Style/Next:
252
+ EnforcedStyle: skip_modifier_ifs
253
+ MinBodyLength: 3
254
+ SupportedStyles:
255
+ - skip_modifier_ifs
256
+ - always
257
+
258
+ Style/NonNilCheck:
259
+ IncludeSemanticChanges: false
260
+
261
+ Style/MethodDefParentheses:
262
+ EnforcedStyle: require_parentheses
263
+ SupportedStyles:
264
+ - require_parentheses
265
+ - require_no_parentheses
266
+ - require_no_parentheses_except_multiline
267
+
268
+ Naming/MethodName:
269
+ EnforcedStyle: snake_case
270
+ SupportedStyles:
271
+ - snake_case
272
+ - camelCase
273
+
274
+ Layout/MultilineArrayBraceLayout:
275
+ EnforcedStyle: symmetrical
276
+ SupportedStyles:
277
+ - symmetrical
278
+ - new_line
279
+ - same_line
280
+
281
+ Layout/MultilineHashBraceLayout:
282
+ EnforcedStyle: symmetrical
283
+ SupportedStyles:
284
+ - symmetrical
285
+ - new_line
286
+ - same_line
287
+
288
+ Layout/MultilineMethodCallBraceLayout:
289
+ EnforcedStyle: symmetrical
290
+ SupportedStyles:
291
+ - symmetrical
292
+ - new_line
293
+ - same_line
294
+
295
+ Layout/MultilineMethodCallIndentation:
296
+ EnforcedStyle: indented
297
+ SupportedStyles:
298
+ - aligned
299
+ - indented
300
+ - indented_relative_to_receiver
301
+ IndentationWidth: 2
302
+
303
+ Layout/MultilineMethodDefinitionBraceLayout:
304
+ EnforcedStyle: symmetrical
305
+ SupportedStyles:
306
+ - symmetrical
307
+ - new_line
308
+ - same_line
309
+
310
+ Style/NumericLiteralPrefix:
311
+ EnforcedOctalStyle: zero_only
312
+ SupportedOctalStyles:
313
+ - zero_with_o
314
+ - zero_only
315
+
316
+ Style/ParenthesesAroundCondition:
317
+ AllowSafeAssignment: true
318
+
319
+ Style/PercentLiteralDelimiters:
320
+ PreferredDelimiters:
321
+ '%': '()'
322
+ '%i': '()'
323
+ '%q': '()'
324
+ '%Q': '()'
325
+ '%r': '{}'
326
+ '%s': '()'
327
+ '%w': '()'
328
+ '%W': '()'
329
+ '%x': '()'
330
+
331
+ Style/PercentQLiterals:
332
+ EnforcedStyle: lower_case_q
333
+ SupportedStyles:
334
+ - lower_case_q
335
+ - upper_case_q
336
+
337
+ Naming/PredicateName:
338
+ NamePrefix:
339
+ - is_
340
+ NamePrefixBlacklist:
341
+ - is_
342
+ NameWhitelist:
343
+ - is_a?
344
+ Exclude:
345
+ - 'spec/**/*'
346
+
347
+ Style/PreferredHashMethods:
348
+ EnforcedStyle: short
349
+ SupportedStyles:
350
+ - short
351
+ - verbose
352
+
353
+ Style/RaiseArgs:
354
+ EnforcedStyle: exploded
355
+ SupportedStyles:
356
+ - compact
357
+ - exploded
358
+
359
+ Style/RedundantReturn:
360
+ AllowMultipleReturnValues: false
361
+
362
+ Style/RegexpLiteral:
363
+ EnforcedStyle: mixed
364
+ SupportedStyles:
365
+ - slashes
366
+ - percent_r
367
+ - mixed
368
+ AllowInnerSlashes: false
369
+
370
+ Style/SafeNavigation:
371
+ ConvertCodeThatCanStartToReturnNil: false
372
+ Enabled: true
373
+
374
+ Lint/SafeNavigationChain:
375
+ Enabled: true
376
+
377
+ Style/Semicolon:
378
+ AllowAsExpressionSeparator: false
379
+
380
+ Style/SignalException:
381
+ EnforcedStyle: only_raise
382
+ SupportedStyles:
383
+ - only_raise
384
+ - only_fail
385
+ - semantic
386
+
387
+ Style/SingleLineMethods:
388
+ AllowIfMethodIsEmpty: true
389
+
390
+ Layout/SpaceBeforeFirstArg:
391
+ AllowForAlignment: true
392
+
393
+ Style/SpecialGlobalVars:
394
+ EnforcedStyle: use_english_names
395
+ SupportedStyles:
396
+ - use_perl_names
397
+ - use_english_names
398
+
399
+ Style/StabbyLambdaParentheses:
400
+ EnforcedStyle: require_parentheses
401
+ SupportedStyles:
402
+ - require_parentheses
403
+ - require_no_parentheses
404
+
405
+ Style/StringLiteralsInInterpolation:
406
+ EnforcedStyle: single_quotes
407
+ SupportedStyles:
408
+ - single_quotes
409
+ - double_quotes
410
+
411
+ Layout/SpaceAroundBlockParameters:
412
+ EnforcedStyleInsidePipes: no_space
413
+ SupportedStylesInsidePipes:
414
+ - space
415
+ - no_space
416
+
417
+ Layout/SpaceAroundEqualsInParameterDefault:
418
+ EnforcedStyle: space
419
+ SupportedStyles:
420
+ - space
421
+ - no_space
422
+
423
+ Layout/SpaceAroundOperators:
424
+ AllowForAlignment: true
425
+
426
+ Layout/SpaceBeforeBlockBraces:
427
+ EnforcedStyle: space
428
+ EnforcedStyleForEmptyBraces: space
429
+ SupportedStyles:
430
+ - space
431
+ - no_space
432
+
433
+ Layout/SpaceInsideBlockBraces:
434
+ EnforcedStyle: space
435
+ SupportedStyles:
436
+ - space
437
+ - no_space
438
+ EnforcedStyleForEmptyBraces: no_space
439
+ SpaceBeforeBlockParameters: true
440
+
441
+ Layout/SpaceInsideHashLiteralBraces:
442
+ EnforcedStyle: space
443
+ EnforcedStyleForEmptyBraces: no_space
444
+ SupportedStyles:
445
+ - space
446
+ - no_space
447
+ - compact
448
+
449
+ Layout/SpaceInsideStringInterpolation:
450
+ EnforcedStyle: no_space
451
+ SupportedStyles:
452
+ - space
453
+ - no_space
454
+
455
+ Style/SymbolProc:
456
+ IgnoredMethods:
457
+ - respond_to
458
+ - define_method
459
+
460
+ Style/TernaryParentheses:
461
+ EnforcedStyle: require_no_parentheses
462
+ SupportedStyles:
463
+ - require_parentheses
464
+ - require_no_parentheses
465
+ AllowSafeAssignment: true
466
+
467
+ Layout/TrailingBlankLines:
468
+ EnforcedStyle: final_newline
469
+ SupportedStyles:
470
+ - final_newline
471
+ - final_blank_line
472
+
473
+ Style/TrivialAccessors:
474
+ ExactNameMatch: true
475
+ AllowPredicates: true
476
+ AllowDSLWriters: false
477
+ IgnoreClassMethods: false
478
+ Whitelist:
479
+ - to_ary
480
+ - to_a
481
+ - to_c
482
+ - to_enum
483
+ - to_h
484
+ - to_hash
485
+ - to_i
486
+ - to_int
487
+ - to_io
488
+ - to_open
489
+ - to_path
490
+ - to_proc
491
+ - to_r
492
+ - to_regexp
493
+ - to_str
494
+ - to_s
495
+ - to_sym
496
+
497
+ Naming/VariableName:
498
+ EnforcedStyle: snake_case
499
+ SupportedStyles:
500
+ - snake_case
501
+ - camelCase
502
+
503
+ Style/WhileUntilModifier:
504
+ Enabled: true
505
+
506
+ Style/WordArray:
507
+ EnforcedStyle: percent
508
+ SupportedStyles:
509
+ - percent
510
+ - brackets
511
+ MinSize: 0
512
+ WordRegex: !ruby/regexp /\A[\p{Word}\n\t]+\z/
513
+
514
+ Metrics/BlockNesting:
515
+ Max: 3
516
+
517
+ Metrics/LineLength:
518
+ Max: 120
519
+ AllowHeredoc: true
520
+ AllowURI: true
521
+ URISchemes:
522
+ - http
523
+ - https
524
+ IgnoreCopDirectives: false
525
+ IgnoredPatterns:
526
+ - '\A\s*(remote_)?test(_\w+)?\s.*(do|->)(\s|\Z)'
527
+
528
+ Metrics/ParameterLists:
529
+ Max: 5
530
+ CountKeywordArgs: false
531
+
532
+ Layout/BlockAlignment:
533
+ EnforcedStyleAlignWith: either
534
+ SupportedStylesAlignWith:
535
+ - either
536
+ - start_of_block
537
+ - start_of_line
538
+
539
+ Layout/EndAlignment:
540
+ EnforcedStyleAlignWith: variable
541
+ SupportedStylesAlignWith:
542
+ - keyword
543
+ - variable
544
+ - start_of_line
545
+
546
+ Layout/DefEndAlignment:
547
+ EnforcedStyleAlignWith: start_of_line
548
+ SupportedStylesAlignWith:
549
+ - start_of_line
550
+ - def
551
+
552
+ Lint/InheritException:
553
+ EnforcedStyle: runtime_error
554
+ SupportedStyles:
555
+ - runtime_error
556
+ - standard_error
557
+
558
+ Lint/UnusedBlockArgument:
559
+ IgnoreEmptyBlocks: true
560
+ AllowUnusedKeywordArguments: false
561
+
562
+ Lint/UnusedMethodArgument:
563
+ AllowUnusedKeywordArguments: false
564
+ IgnoreEmptyMethods: true
565
+
566
+ Performance/RedundantMerge:
567
+ MaxKeyValuePairs: 2
568
+
569
+ Rails/ActionFilter:
570
+ EnforcedStyle: action
571
+ SupportedStyles:
572
+ - action
573
+ - filter
574
+ Include:
575
+ - app/controllers/**/*.rb
576
+
577
+ Rails/Date:
578
+ EnforcedStyle: flexible
579
+ SupportedStyles:
580
+ - strict
581
+ - flexible
582
+
583
+ Rails/DynamicFindBy:
584
+ Whitelist:
585
+ - find_by_sql
586
+
587
+ Rails/Exit:
588
+ Include:
589
+ - app/**/*.rb
590
+ - config/**/*.rb
591
+ - lib/**/*.rb
592
+ Exclude:
593
+ - 'lib/**/*.rake'
594
+
595
+ Rails/FindBy:
596
+ Include:
597
+ - app/models/**/*.rb
598
+
599
+ Rails/FindEach:
600
+ Include:
601
+ - app/models/**/*.rb
602
+
603
+ Rails/HasAndBelongsToMany:
604
+ Include:
605
+ - app/models/**/*.rb
606
+
607
+ Rails/NotNullColumn:
608
+ Include:
609
+ - db/migrate/*.rb
610
+
611
+ Rails/Output:
612
+ Include:
613
+ - app/**/*.rb
614
+ - config/**/*.rb
615
+ - db/**/*.rb
616
+ - lib/**/*.rb
617
+
618
+ Rails/ReadWriteAttribute:
619
+ Include:
620
+ - app/models/**/*.rb
621
+
622
+ Rails/RequestReferer:
623
+ EnforcedStyle: referer
624
+ SupportedStyles:
625
+ - referer
626
+ - referrer
627
+
628
+ Rails/SafeNavigation:
629
+ ConvertTry: false
630
+
631
+ Rails/ScopeArgs:
632
+ Include:
633
+ - app/models/**/*.rb
634
+
635
+ Rails/TimeZone:
636
+ EnforcedStyle: flexible
637
+ SupportedStyles:
638
+ - strict
639
+ - flexible
640
+
641
+ Rails/UniqBeforePluck:
642
+ EnforcedStyle: conservative
643
+ SupportedStyles:
644
+ - conservative
645
+ - aggressive
646
+
647
+ Rails/Validation:
648
+ Include:
649
+ - app/models/**/*.rb
650
+
651
+ Naming/AccessorMethodName:
652
+ Enabled: true
653
+
654
+ Layout/AlignArray:
655
+ Enabled: true
656
+
657
+ Style/ArrayJoin:
658
+ Enabled: true
659
+
660
+ Naming/AsciiIdentifiers:
661
+ Enabled: true
662
+
663
+ Style/Attr:
664
+ Enabled: true
665
+
666
+ Style/BeginBlock:
667
+ Enabled: true
668
+
669
+ Style/BlockComments:
670
+ Enabled: true
671
+
672
+ Layout/BlockEndNewline:
673
+ Enabled: true
674
+
675
+ Style/CaseEquality:
676
+ Enabled: true
677
+
678
+ Style/CharacterLiteral:
679
+ Enabled: true
680
+
681
+ Naming/ClassAndModuleCamelCase:
682
+ Enabled: true
683
+
684
+ Style/ClassMethods:
685
+ Enabled: true
686
+
687
+ Style/ClassVars:
688
+ Enabled: true
689
+
690
+ Layout/ClosingParenthesisIndentation:
691
+ Enabled: true
692
+
693
+ Style/ColonMethodCall:
694
+ Enabled: true
695
+
696
+ Layout/CommentIndentation:
697
+ Enabled: true
698
+
699
+ Naming/ConstantName:
700
+ Enabled: true
701
+
702
+ Style/DateTime:
703
+ Enabled: true
704
+
705
+ Style/DefWithParentheses:
706
+ Enabled: true
707
+
708
+ Style/EachForSimpleLoop:
709
+ Enabled: true
710
+
711
+ Style/EachWithObject:
712
+ Enabled: true
713
+
714
+ Layout/ElseAlignment:
715
+ Enabled: true
716
+
717
+ Style/EmptyCaseCondition:
718
+ Enabled: true
719
+
720
+ Layout/EmptyLines:
721
+ Enabled: true
722
+
723
+ Layout/EmptyLinesAroundAccessModifier:
724
+ Enabled: true
725
+
726
+ Layout/EmptyLinesAroundMethodBody:
727
+ Enabled: true
728
+
729
+ Style/EmptyLiteral:
730
+ Enabled: true
731
+
732
+ Style/EndBlock:
733
+ Enabled: true
734
+
735
+ Layout/EndOfLine:
736
+ Enabled: true
737
+
738
+ Style/EvenOdd:
739
+ Enabled: true
740
+
741
+ Layout/InitialIndentation:
742
+ Enabled: true
743
+
744
+ Style/FlipFlop:
745
+ Enabled: true
746
+
747
+ Style/IfInsideElse:
748
+ Enabled: true
749
+
750
+ Style/IfUnlessModifierOfIfUnless:
751
+ Enabled: true
752
+
753
+ Style/IfWithSemicolon:
754
+ Enabled: true
755
+
756
+ Style/IdenticalConditionalBranches:
757
+ Enabled: true
758
+
759
+ Style/InfiniteLoop:
760
+ Enabled: true
761
+
762
+ Layout/LeadingCommentSpace:
763
+ Enabled: true
764
+
765
+ Style/LineEndConcatenation:
766
+ Enabled: true
767
+
768
+ Style/MethodCallWithoutArgsParentheses:
769
+ Enabled: true
770
+
771
+ Style/MethodMissingSuper:
772
+ Enabled: true
773
+
774
+ Style/MissingRespondToMissing:
775
+ Enabled: true
776
+
777
+ Style/MultilineBlockChain:
778
+ Enabled: true
779
+
780
+ Layout/MultilineBlockLayout:
781
+ Enabled: true
782
+
783
+ Style/MultilineIfThen:
784
+ Enabled: true
785
+
786
+ Style/MultilineMemoization:
787
+ Enabled: true
788
+
789
+ Style/MultilineTernaryOperator:
790
+ Enabled: true
791
+
792
+ Style/NegatedIf:
793
+ Enabled: true
794
+
795
+ Style/NegatedWhile:
796
+ Enabled: true
797
+
798
+ Style/NestedModifier:
799
+ Enabled: true
800
+
801
+ Style/NestedParenthesizedCalls:
802
+ Enabled: true
803
+
804
+ Style/NestedTernaryOperator:
805
+ Enabled: true
806
+
807
+ Style/NilComparison:
808
+ Enabled: true
809
+
810
+ Style/Not:
811
+ Enabled: true
812
+
813
+ Style/OneLineConditional:
814
+ Enabled: true
815
+
816
+ Naming/BinaryOperatorParameterName:
817
+ Enabled: true
818
+
819
+ Style/OptionalArguments:
820
+ Enabled: true
821
+
822
+ Style/ParallelAssignment:
823
+ Enabled: true
824
+
825
+ Style/PerlBackrefs:
826
+ Enabled: true
827
+
828
+ Style/Proc:
829
+ Enabled: true
830
+
831
+ Style/RedundantBegin:
832
+ Enabled: true
833
+
834
+ Style/RedundantException:
835
+ Enabled: true
836
+
837
+ Style/RedundantFreeze:
838
+ Enabled: true
839
+
840
+ Style/RedundantParentheses:
841
+ Enabled: true
842
+
843
+ Style/RedundantSelf:
844
+ Enabled: true
845
+
846
+ Layout/RescueEnsureAlignment:
847
+ Enabled: true
848
+
849
+ Style/RescueModifier:
850
+ Enabled: true
851
+
852
+ Style/SelfAssignment:
853
+ Enabled: true
854
+
855
+ Layout/SpaceAfterColon:
856
+ Enabled: true
857
+
858
+ Layout/SpaceAfterComma:
859
+ Enabled: true
860
+
861
+ Layout/SpaceAfterMethodName:
862
+ Enabled: true
863
+
864
+ Layout/SpaceAfterNot:
865
+ Enabled: true
866
+
867
+ Layout/SpaceAfterSemicolon:
868
+ Enabled: true
869
+
870
+ Layout/SpaceBeforeComma:
871
+ Enabled: true
872
+
873
+ Layout/SpaceBeforeComment:
874
+ Enabled: true
875
+
876
+ Layout/SpaceBeforeSemicolon:
877
+ Enabled: true
878
+
879
+ Layout/SpaceAroundKeyword:
880
+ Enabled: true
881
+
882
+ Layout/SpaceInsideArrayPercentLiteral:
883
+ Enabled: true
884
+
885
+ Layout/SpaceInsidePercentLiteralDelimiters:
886
+ Enabled: true
887
+
888
+ Layout/SpaceInsideArrayLiteralBrackets:
889
+ Enabled: true
890
+
891
+ Layout/SpaceInsideParens:
892
+ Enabled: true
893
+
894
+ Layout/SpaceInsideRangeLiteral:
895
+ Enabled: true
896
+
897
+ Style/SymbolLiteral:
898
+ Enabled: true
899
+
900
+ Layout/Tab:
901
+ Enabled: true
902
+
903
+ Layout/TrailingWhitespace:
904
+ Enabled: true
905
+
906
+ Style/UnlessElse:
907
+ Enabled: true
908
+
909
+ Style/UnneededCapitalW:
910
+ Enabled: true
911
+
912
+ Style/UnneededInterpolation:
913
+ Enabled: true
914
+
915
+ Style/UnneededPercentQ:
916
+ Enabled: true
917
+
918
+ Style/VariableInterpolation:
919
+ Enabled: true
920
+
921
+ Style/WhenThen:
922
+ Enabled: true
923
+
924
+ Style/WhileUntilDo:
925
+ Enabled: true
926
+
927
+ Style/ZeroLengthPredicate:
928
+ Enabled: true
929
+
930
+ Lint/AmbiguousOperator:
931
+ Enabled: true
932
+
933
+ Lint/AmbiguousRegexpLiteral:
934
+ Enabled: true
935
+
936
+ Lint/CircularArgumentReference:
937
+ Enabled: true
938
+
939
+ Layout/ConditionPosition:
940
+ Enabled: true
941
+
942
+ Lint/Debugger:
943
+ Enabled: true
944
+
945
+ Lint/DeprecatedClassMethods:
946
+ Enabled: true
947
+
948
+ Lint/DuplicateMethods:
949
+ Enabled: true
950
+
951
+ Lint/DuplicatedKey:
952
+ Enabled: true
953
+
954
+ Lint/EachWithObjectArgument:
955
+ Enabled: true
956
+
957
+ Lint/ElseLayout:
958
+ Enabled: true
959
+
960
+ Lint/EmptyEnsure:
961
+ Enabled: true
962
+
963
+ Lint/EmptyInterpolation:
964
+ Enabled: true
965
+
966
+ Lint/EndInMethod:
967
+ Enabled: true
968
+
969
+ Lint/EnsureReturn:
970
+ Enabled: true
971
+
972
+ Lint/FloatOutOfRange:
973
+ Enabled: true
974
+
975
+ Lint/FormatParameterMismatch:
976
+ Enabled: true
977
+
978
+ Lint/HandleExceptions:
979
+ Enabled: true
980
+
981
+ Lint/ImplicitStringConcatenation:
982
+ Description: Checks for adjacent string literals on the same line, which could
983
+ better be represented as a single string literal.
984
+
985
+ Lint/IneffectiveAccessModifier:
986
+ Description: Checks for attempts to use `private` or `protected` to set the visibility
987
+ of a class method, which does not work.
988
+
989
+ Lint/LiteralAsCondition:
990
+ Enabled: true
991
+
992
+ Lint/LiteralInInterpolation:
993
+ Enabled: true
994
+
995
+ Lint/Loop:
996
+ Description: Use Kernel#loop with break rather than begin/end/until or begin/end/while
997
+ for post-loop tests.
998
+
999
+ Lint/NestedMethodDefinition:
1000
+ Enabled: true
1001
+
1002
+ Lint/NextWithoutAccumulator:
1003
+ Description: Do not omit the accumulator when calling `next` in a `reduce`/`inject`
1004
+ block.
1005
+
1006
+ Lint/NonLocalExitFromIterator:
1007
+ Enabled: true
1008
+
1009
+ Lint/ParenthesesAsGroupedExpression:
1010
+ Enabled: true
1011
+
1012
+ Lint/PercentStringArray:
1013
+ Enabled: true
1014
+
1015
+ Lint/PercentSymbolArray:
1016
+ Enabled: true
1017
+
1018
+ Lint/RandOne:
1019
+ Description: Checks for `rand(1)` calls. Such calls always return `0` and most
1020
+ likely a mistake.
1021
+
1022
+ Lint/RequireParentheses:
1023
+ Enabled: true
1024
+
1025
+ Lint/RescueException:
1026
+ Enabled: true
1027
+
1028
+ Lint/ShadowedException:
1029
+ Enabled: true
1030
+
1031
+ Lint/ShadowingOuterLocalVariable:
1032
+ Enabled: true
1033
+
1034
+ Lint/StringConversionInInterpolation:
1035
+ Enabled: true
1036
+
1037
+ Lint/UnderscorePrefixedVariableName:
1038
+ Enabled: true
1039
+
1040
+ Lint/UnifiedInteger:
1041
+ Enabled: true
1042
+
1043
+ Lint/UnneededCopDisableDirective:
1044
+ Enabled: true
1045
+
1046
+ Lint/UnneededCopEnableDirective:
1047
+ Enabled: true
1048
+
1049
+ Lint/UnneededSplatExpansion:
1050
+ Enabled: true
1051
+
1052
+ Lint/UnreachableCode:
1053
+ Enabled: true
1054
+
1055
+ Lint/UselessAccessModifier:
1056
+ ContextCreatingMethods: []
1057
+
1058
+ Lint/UselessAssignment:
1059
+ Enabled: true
1060
+
1061
+ Lint/UselessComparison:
1062
+ Enabled: true
1063
+
1064
+ Lint/UselessElseWithoutRescue:
1065
+ Enabled: true
1066
+
1067
+ Lint/UselessSetterCall:
1068
+ Enabled: true
1069
+
1070
+ Lint/Void:
1071
+ Enabled: true
1072
+
1073
+ Performance/CaseWhenSplat:
1074
+ Enabled: true
1075
+
1076
+ Performance/Count:
1077
+ SafeMode: true
1078
+
1079
+ Performance/Detect:
1080
+ SafeMode: true
1081
+
1082
+ Performance/DoubleStartEndWith:
1083
+ Enabled: true
1084
+
1085
+ Performance/EndWith:
1086
+ Enabled: true
1087
+
1088
+ Performance/FixedSize:
1089
+ Enabled: true
1090
+
1091
+ Performance/FlatMap:
1092
+ EnabledForFlattenWithoutParams: false
1093
+
1094
+ Performance/LstripRstrip:
1095
+ Enabled: true
1096
+
1097
+ Performance/RangeInclude:
1098
+ Enabled: true
1099
+
1100
+ Performance/RedundantBlockCall:
1101
+ Enabled: true
1102
+
1103
+ Performance/RedundantMatch:
1104
+ Enabled: true
1105
+
1106
+ Performance/RedundantSortBy:
1107
+ Enabled: true
1108
+
1109
+ Performance/RegexpMatch:
1110
+ Enabled: true
1111
+
1112
+ Performance/ReverseEach:
1113
+ Enabled: true
1114
+
1115
+ Performance/Sample:
1116
+ Enabled: true
1117
+
1118
+ Performance/Size:
1119
+ Enabled: true
1120
+
1121
+ Performance/CompareWithBlock:
1122
+ Enabled: true
1123
+
1124
+ Performance/StartWith:
1125
+ Enabled: true
1126
+
1127
+ Performance/StringReplacement:
1128
+ Enabled: true
1129
+
1130
+ Rails/DelegateAllowBlank:
1131
+ Enabled: true
1132
+
1133
+ Rails/HttpPositionalArguments:
1134
+ Include:
1135
+ - spec/**/*
1136
+ - test/**/*
1137
+
1138
+ Rails/OutputSafety:
1139
+ Enabled: true
1140
+
1141
+ Rails/PluralizationGrammar:
1142
+ Enabled: true
1143
+
1144
+ Security/Eval:
1145
+ Enabled: true
1146
+
1147
+ Security/JSONLoad:
1148
+ Enabled: true
1149
+
1150
+ Security/Open:
1151
+ Enabled: true
1152
+
1153
+ Lint/BigDecimalNew:
1154
+ Enabled: true
1155
+
1156
+ Style/TrailingBodyOnClass:
1157
+ Enabled: true
1158
+
1159
+ Style/TrailingBodyOnModule:
1160
+ Enabled: true
1161
+
1162
+ Style/TrailingCommaInArrayLiteral:
1163
+ EnforcedStyleForMultiline: comma
1164
+ Enabled: true
1165
+
1166
+ Style/TrailingCommaInHashLiteral:
1167
+ EnforcedStyleForMultiline: comma
1168
+ Enabled: true
1169
+
1170
+ Layout/SpaceInsideReferenceBrackets:
1171
+ EnforcedStyle: no_space
1172
+ EnforcedStyleForEmptyBrackets: no_space
1173
+ Enabled: true
1174
+
1175
+ Style/ModuleFunction:
1176
+ EnforcedStyle: extend_self
1177
+
1178
+ Lint/OrderedMagicComments:
1179
+ Enabled: true