renuocop 0.1.0 → 0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 175b396c150c92860155d33373dfc1ecb0b5b3be145a908ac797a78235c49a19
4
- data.tar.gz: 12d369a44a2b666735d158deba31e132cbf4f1377e0d744f440960f17a8c34b0
3
+ metadata.gz: d6fea1bfa81ae643a1b3688ec3a4abb8a6a3a16fc7041e4b11cbd984fd1cecf9
4
+ data.tar.gz: 2cc899bf0668460a677d5a84942817f5cf80561849c190eb9b29917759a734a3
5
5
  SHA512:
6
- metadata.gz: 5027349e64ae946dc78d400c136c5876ab88a11b6521af436c36ed8b0b393fde8c446fdced63c5501953374bf03686e0c913ee1c8167797a26dfe90b8cc6ab1d
7
- data.tar.gz: b294f449fc8222b62170184f6a3e35f9f3d546d1e2f0d65b503dd65d884ac8e05b7004156f7fe5253daf573163ad9300f27010af4a51fb020797c1b854e884c5
6
+ metadata.gz: bd9366c2a40fab0614e290806165661e0cf38bbe95df26d0264d7452bd7756f630431fc2b1384957f6a9202ce3d7bc52d2058fd4b8006d2aaa5d0722a09dceab
7
+ data.tar.gz: '03853626661148fe2a9e0472534acf15a78fd30da0aa303f8b2aa1b20909e6333770e72377412abc9a91a1203909b6f84888bb942b5bad3c6845c4e521d16252'
data/config/base.yml ADDED
@@ -0,0 +1,839 @@
1
+ require:
2
+ - rubocop-performance
3
+ - rubocop-rails
4
+ - rubocop-rspec
5
+ - standard
6
+
7
+ inherit_gem:
8
+ standard: config/base.yml
9
+
10
+ Bundler/DuplicatedGem:
11
+ Enabled: true
12
+
13
+ Bundler/GemFilename:
14
+ Enabled: true
15
+
16
+ Bundler/InsecureProtocolSource:
17
+ Enabled: true
18
+
19
+ Gemspec/DeprecatedAttributeAssignment:
20
+ Enabled: true
21
+
22
+ Gemspec/DuplicatedAssignment:
23
+ Enabled: true
24
+
25
+ Gemspec/OrderedDependencies:
26
+ Enabled: true
27
+
28
+ Gemspec/RequireMFA:
29
+ Enabled: true
30
+
31
+ Gemspec/RequiredRubyVersion:
32
+ Enabled: true
33
+
34
+ Gemspec/RubyVersionGlobalsUsage:
35
+ Enabled: true
36
+
37
+ Layout/ArgumentAlignment:
38
+ EnforcedStyle: with_first_argument
39
+
40
+ Layout/ArrayAlignment:
41
+ EnforcedStyle: with_first_element
42
+
43
+ Layout/CaseIndentation:
44
+ EnforcedStyle: case
45
+
46
+ Layout/EmptyLineAfterGuardClause:
47
+ Enabled: true
48
+
49
+ Layout/EmptyLineBetweenDefs:
50
+ AllowAdjacentOneLineDefs: true
51
+
52
+ Layout/EmptyLinesAroundAttributeAccessor:
53
+ Enabled: true
54
+
55
+ Layout/EndAlignment:
56
+ EnforcedStyleAlignWith: keyword
57
+
58
+ Layout/ExtraSpacing:
59
+ AllowForAlignment: true
60
+ AllowBeforeTrailingComments: false
61
+
62
+ Layout/FirstArgumentIndentation:
63
+ EnforcedStyle: special_for_inner_method_call_in_parentheses
64
+
65
+ Layout/FirstArrayElementIndentation:
66
+ EnforcedStyle: special_inside_parentheses
67
+
68
+ Layout/FirstHashElementIndentation:
69
+ EnforcedStyle: special_inside_parentheses
70
+
71
+ Layout/FirstParameterIndentation:
72
+ Enabled: true
73
+
74
+ Layout/LineContinuationLeadingSpace:
75
+ Enabled: true
76
+
77
+ Layout/LineContinuationSpacing:
78
+ Enabled: true
79
+
80
+ Layout/LineEndStringConcatenationIndentation:
81
+ Enabled: true
82
+
83
+ Layout/LineLength:
84
+ Enabled: true
85
+ Max: 120
86
+
87
+ Layout/MultilineMethodCallIndentation:
88
+ EnforcedStyle: aligned
89
+
90
+ Layout/MultilineOperationIndentation:
91
+ EnforcedStyle: aligned
92
+
93
+ Layout/ParameterAlignment:
94
+ EnforcedStyle: with_first_parameter
95
+
96
+ Layout/SpaceBeforeBrackets:
97
+ Enabled: true
98
+
99
+ Layout/SpaceInsideHashLiteralBraces:
100
+ EnforcedStyle: space
101
+
102
+ Layout/TrailingWhitespace:
103
+ AllowInHeredoc: false
104
+
105
+ Lint/AmbiguousAssignment:
106
+ Enabled: true
107
+
108
+ Lint/AmbiguousBlockAssociation:
109
+ Enabled: true
110
+
111
+ Lint/AmbiguousOperatorPrecedence:
112
+ Enabled: true
113
+
114
+ Lint/AmbiguousRange:
115
+ Enabled: true
116
+
117
+ Lint/ConstantOverwrittenInRescue:
118
+ Enabled: true
119
+
120
+ Lint/DeprecatedConstants:
121
+ Enabled: true
122
+
123
+ Lint/DisjunctiveAssignmentInConstructor:
124
+ Enabled: true
125
+
126
+ Lint/DuplicateBranch:
127
+ Enabled: true
128
+
129
+ Lint/DuplicateMagicComment:
130
+ Enabled: true
131
+
132
+ Lint/DuplicateRegexpCharacterClassElement:
133
+ Enabled: true
134
+
135
+ Lint/EmptyBlock:
136
+ Enabled: true
137
+
138
+ Lint/EmptyClass:
139
+ Enabled: true
140
+
141
+ Lint/EmptyConditionalBody:
142
+ Enabled: true
143
+
144
+ Lint/EmptyFile:
145
+ Enabled: true
146
+
147
+ Lint/EmptyInPattern:
148
+ Enabled: true
149
+
150
+ Lint/HashCompareByIdentity:
151
+ Enabled: true
152
+
153
+ Lint/IncompatibleIoSelectWithFiberScheduler:
154
+ Enabled: true
155
+
156
+ Lint/InheritException:
157
+ EnforcedStyle: standard_error
158
+
159
+ Lint/LambdaWithoutLiteralBlock:
160
+ Enabled: true
161
+
162
+ Lint/MissingSuper:
163
+ Enabled: true
164
+
165
+ Lint/NoReturnInBeginEndBlocks:
166
+ Enabled: true
167
+
168
+ Lint/NonAtomicFileOperation:
169
+ Enabled: true
170
+
171
+ Lint/NumberedParameterAssignment:
172
+ Enabled: true
173
+
174
+ Lint/OrAssignmentToConstant:
175
+ Enabled: true
176
+
177
+ Lint/PercentStringArray:
178
+ Enabled: true
179
+
180
+ Lint/RedundantCopDisableDirective:
181
+ Enabled: true
182
+
183
+ Lint/RedundantCopEnableDirective:
184
+ Enabled: true
185
+
186
+ Lint/RedundantDirGlobSort:
187
+ Enabled: true
188
+
189
+ Lint/RedundantSafeNavigation:
190
+ Enabled: true
191
+
192
+ Lint/RefinementImportMethods:
193
+ Enabled: true
194
+
195
+ Lint/RequireRangeParentheses:
196
+ Enabled: true
197
+
198
+ Lint/RequireRelativeSelfPath:
199
+ Enabled: true
200
+
201
+ Lint/SafeNavigationChain:
202
+ AllowedMethods:
203
+ - present?
204
+ - blank?
205
+ - presence
206
+ - try
207
+ - try!
208
+ - in?
209
+
210
+ Lint/ScriptPermission:
211
+ Enabled: true
212
+
213
+ Lint/SendWithMixinArgument:
214
+ Enabled: true
215
+
216
+ Lint/ShadowingOuterLocalVariable:
217
+ Enabled: true
218
+
219
+ Lint/StructNewOverride:
220
+ Enabled: true
221
+
222
+ Lint/SuppressedException:
223
+ Enabled: true
224
+
225
+ Lint/SymbolConversion:
226
+ Enabled: true
227
+
228
+ Lint/ToEnumArguments:
229
+ Enabled: true
230
+
231
+ Lint/ToJSON:
232
+ Enabled: true
233
+
234
+ Lint/TripleQuotes:
235
+ Enabled: true
236
+
237
+ Lint/UnexpectedBlockArity:
238
+ Enabled: true
239
+
240
+ Lint/UnmodifiedReduceAccumulator:
241
+ Enabled: true
242
+
243
+ Lint/UnreachableLoop:
244
+ Enabled: true
245
+
246
+ Lint/UnusedBlockArgument:
247
+ Enabled: true
248
+
249
+ Lint/UnusedMethodArgument:
250
+ Enabled: true
251
+
252
+ Lint/UselessAccessModifier:
253
+ Enabled: true
254
+
255
+ Lint/UselessElseWithoutRescue:
256
+ Enabled: true
257
+
258
+ Lint/UselessMethodDefinition:
259
+ Enabled: true
260
+
261
+ Lint/UselessRuby2Keywords:
262
+ Enabled: true
263
+
264
+ Metrics/AbcSize:
265
+ Enabled: true
266
+ Exclude:
267
+ - 'db/migrate/*'
268
+
269
+ Metrics/BlockLength:
270
+ Enabled: true
271
+ Exclude:
272
+ - 'spec/**/*.rb'
273
+ - 'config/environments/**/*.rb'
274
+ - 'config/routes.rb'
275
+ - 'db/**/*'
276
+
277
+ Metrics/BlockNesting:
278
+ Enabled: true
279
+
280
+ Metrics/ClassLength:
281
+ Enabled: true
282
+ CountAsOne:
283
+ - array
284
+ - hash
285
+ - heredoc
286
+ Exclude:
287
+ - 'db/**/*'
288
+
289
+ Metrics/CyclomaticComplexity:
290
+ Enabled: true
291
+
292
+ Metrics/MethodLength:
293
+ Enabled: true
294
+ CountAsOne:
295
+ - array
296
+ - hash
297
+ - heredoc
298
+
299
+ Metrics/ModuleLength:
300
+ Enabled: true
301
+ CountAsOne:
302
+ - array
303
+ - hash
304
+ - heredoc
305
+
306
+ Metrics/ParameterLists:
307
+ Enabled: true
308
+
309
+ Metrics/PerceivedComplexity:
310
+ Enabled: true
311
+
312
+ Naming/AccessorMethodName:
313
+ Enabled: true
314
+
315
+ Naming/AsciiIdentifiers:
316
+ Enabled: true
317
+
318
+ Naming/BlockForwarding:
319
+ Enabled: true
320
+
321
+ Naming/FileName:
322
+ Enabled: true
323
+
324
+ Naming/HeredocDelimiterNaming:
325
+ Enabled: true
326
+
327
+ Naming/MemoizedInstanceVariableName:
328
+ Enabled: true
329
+
330
+ Naming/MethodName:
331
+ Enabled: true
332
+
333
+ Naming/MethodParameterName:
334
+ Enabled: true
335
+
336
+ Naming/PredicateName:
337
+ Enabled: true
338
+
339
+ Naming/RescuedExceptionsVariableName:
340
+ Enabled: true
341
+
342
+ Naming/VariableNumber:
343
+ Enabled: true
344
+
345
+ Performance/AncestorsInclude:
346
+ Enabled: true
347
+
348
+ Performance/BigDecimalWithNumericArgument:
349
+ Enabled: true
350
+
351
+ Performance/BlockGivenWithExplicitBlock:
352
+ Enabled: true
353
+
354
+ Performance/Casecmp:
355
+ Enabled: true
356
+
357
+ Performance/CollectionLiteralInLoop:
358
+ Enabled: true
359
+
360
+ Performance/ConcurrentMonotonicTime:
361
+ Enabled: true
362
+
363
+ Performance/ConstantRegexp:
364
+ Enabled: true
365
+
366
+ Performance/DeletePrefix:
367
+ Enabled: true
368
+
369
+ Performance/DeleteSuffix:
370
+ Enabled: true
371
+
372
+ Performance/MapCompact:
373
+ Enabled: true
374
+
375
+ Performance/MethodObjectAsBlock:
376
+ Enabled: true
377
+
378
+ Performance/RedundantBlockCall:
379
+ Enabled: true
380
+
381
+ Performance/RedundantEqualityComparisonBlock:
382
+ Enabled: true
383
+
384
+ Performance/RedundantSortBlock:
385
+ Enabled: true
386
+
387
+ Performance/RedundantSplitRegexpArgument:
388
+ Enabled: true
389
+
390
+ Performance/RedundantStringChars:
391
+ Enabled: true
392
+
393
+ Performance/ReverseFirst:
394
+ Enabled: true
395
+
396
+ Performance/SortReverse:
397
+ Enabled: true
398
+
399
+ Performance/Squeeze:
400
+ Enabled: true
401
+
402
+ Performance/StringIdentifierArgument:
403
+ Enabled: true
404
+
405
+ Performance/StringInclude:
406
+ Enabled: true
407
+
408
+ Performance/Sum:
409
+ Enabled: true
410
+
411
+ Performance/TimesMap:
412
+ Enabled: true
413
+
414
+ RSpec/AnyInstance:
415
+ Enabled: false
416
+
417
+ RSpec/DescribeClass:
418
+ Exclude:
419
+ - 'spec/system/**/*'
420
+ - 'spec/views/**/*'
421
+
422
+ RSpec/DescribedClass:
423
+ SkipBlocks: true
424
+
425
+ RSpec/ExampleLength:
426
+ Exclude:
427
+ - 'spec/system/**/*'
428
+ - 'spec/requests/**/*'
429
+ - 'spec/views/**/*'
430
+
431
+ RSpec/InstanceVariable:
432
+ Exclude:
433
+ - 'spec/views/**/*'
434
+
435
+ RSpec/MultipleExpectations:
436
+ Enabled: false
437
+
438
+ RSpec/MultipleMemoizedHelpers:
439
+ Enabled: false
440
+
441
+ RSpec/NestedGroups:
442
+ Max: 5
443
+
444
+ RSpec/NoExpectationExample:
445
+ Enabled: false
446
+
447
+ RSpec/SortMetadata:
448
+ Enabled: false
449
+
450
+ RSpec/VerifiedDoubles:
451
+ Enabled: false
452
+
453
+ Rails/BulkChangeTable:
454
+ Enabled: false
455
+
456
+ Rails/I18nLocaleAssignment:
457
+ Exclude:
458
+ - 'spec/**/*'
459
+
460
+ Rails/LexicallyScopedActionFilter:
461
+ Enabled: false
462
+
463
+ Rails/NotNullColumn:
464
+ Exclude:
465
+ - 'db/migrate/*'
466
+
467
+ Rails/WhereExists:
468
+ Enabled: false
469
+
470
+ Rails/SkipsModelValidations:
471
+ Exclude:
472
+ - 'spec/**/*.rb'
473
+
474
+ Security/CompoundHash:
475
+ Enabled: true
476
+
477
+ Security/IoMethods:
478
+ Enabled: true
479
+
480
+ Security/MarshalLoad:
481
+ Enabled: true
482
+
483
+ Style/AccessModifierDeclarations:
484
+ Enabled: true
485
+
486
+ Style/AccessorGrouping:
487
+ Enabled: true
488
+
489
+ Style/Alias:
490
+ EnforcedStyle: prefer_alias
491
+
492
+ Style/ArgumentsForwarding:
493
+ Enabled: true
494
+
495
+ Style/ArrayIntersect:
496
+ Enabled: true
497
+
498
+ Style/BisectedAttrAccessor:
499
+ Enabled: true
500
+
501
+ Style/BlockDelimiters:
502
+ Enabled: true
503
+
504
+ Style/CaseEquality:
505
+ Enabled: true
506
+
507
+ Style/CaseLikeIf:
508
+ Enabled: true
509
+
510
+ Style/ClassAndModuleChildren:
511
+ Enabled: true
512
+
513
+ Style/ClassVars:
514
+ Enabled: true
515
+
516
+ Style/CollectionCompact:
517
+ Enabled: true
518
+
519
+ Style/CombinableLoops:
520
+ Enabled: true
521
+
522
+ Style/CommandLiteral:
523
+ EnforcedStyle: backticks
524
+
525
+ Style/CommentAnnotation:
526
+ Enabled: true
527
+
528
+ Style/CommentedKeyword:
529
+ Enabled: true
530
+
531
+ Style/ConcatArrayLiterals:
532
+ Enabled: true
533
+
534
+ Style/DocumentDynamicEvalDefinition:
535
+ Enabled: true
536
+
537
+ Style/DoubleCopDisableDirective:
538
+ Enabled: true
539
+
540
+ Style/DoubleNegation:
541
+ Enabled: true
542
+
543
+ Style/EmptyHeredoc:
544
+ Enabled: true
545
+
546
+ Style/EmptyMethod:
547
+ EnforcedStyle: compact
548
+
549
+ Style/EndlessMethod:
550
+ Enabled: true
551
+
552
+ Style/EnvHome:
553
+ Enabled: true
554
+
555
+ Style/EvenOdd:
556
+ Enabled: true
557
+
558
+ Style/ExpandPathArguments:
559
+ Enabled: true
560
+
561
+ Style/ExplicitBlockArgument:
562
+ Enabled: true
563
+
564
+ Style/ExponentialNotation:
565
+ Enabled: true
566
+
567
+ Style/FetchEnvVar:
568
+ Enabled: true
569
+
570
+ Style/FileRead:
571
+ Enabled: true
572
+
573
+ Style/FileWrite:
574
+ Enabled: true
575
+
576
+ Style/FloatDivision:
577
+ Enabled: true
578
+
579
+ Style/FormatString:
580
+ Enabled: true
581
+
582
+ Style/FormatStringToken:
583
+ Enabled: true
584
+
585
+ Style/FrozenStringLiteralComment:
586
+ Enabled: true
587
+
588
+ Style/GuardClause:
589
+ Enabled: true
590
+
591
+ Style/HashConversion:
592
+ Enabled: true
593
+
594
+ Style/HashEachMethods:
595
+ Enabled: true
596
+
597
+ Style/HashExcept:
598
+ Enabled: true
599
+
600
+ Style/HashLikeCase:
601
+ Enabled: true
602
+
603
+ Style/HashSyntax:
604
+ Enabled: true
605
+ EnforcedShorthandSyntax: either
606
+
607
+ Style/HashTransformKeys:
608
+ Enabled: true
609
+
610
+ Style/HashTransformValues:
611
+ Enabled: true
612
+
613
+ Style/IfWithBooleanLiteralBranches:
614
+ Enabled: true
615
+
616
+ Style/InPatternThen:
617
+ Enabled: true
618
+
619
+ Style/InverseMethods:
620
+ Enabled: true
621
+
622
+ Style/Lambda:
623
+ Enabled: true
624
+
625
+ Style/MagicCommentFormat:
626
+ Enabled: true
627
+
628
+ Style/MapCompactWithConditionalBlock:
629
+ Enabled: true
630
+
631
+ Style/MapToHash:
632
+ Enabled: true
633
+
634
+ Style/MapToSet:
635
+ Enabled: true
636
+
637
+ Style/MethodDefParentheses:
638
+ Enabled: true
639
+
640
+ Style/MinMax:
641
+ Enabled: true
642
+
643
+ Style/MinMaxComparison:
644
+ Enabled: true
645
+
646
+ Style/MixinUsage:
647
+ Exclude:
648
+ - 'bin/setup'
649
+ - 'bin/update'
650
+
651
+ Style/ModuleFunction:
652
+ Enabled: true
653
+
654
+ Style/MultilineBlockChain:
655
+ Enabled: true
656
+
657
+ Style/MultilineInPatternThen:
658
+ Enabled: true
659
+
660
+ Style/MultilineTernaryOperator:
661
+ Enabled: true
662
+
663
+ Style/MultipleComparison:
664
+ Enabled: true
665
+
666
+ Style/MutableConstant:
667
+ Enabled: true
668
+
669
+ Style/NegatedIf:
670
+ Enabled: true
671
+
672
+ Style/NegatedIfElseCondition:
673
+ Enabled: true
674
+
675
+ Style/NegatedUnless:
676
+ Enabled: true
677
+
678
+ Style/NestedFileDirname:
679
+ Enabled: true
680
+
681
+ Style/Next:
682
+ Enabled: true
683
+
684
+ Style/NilLambda:
685
+ Enabled: true
686
+
687
+ Style/NonNilCheck:
688
+ IncludeSemanticChanges: true
689
+
690
+ Style/NumberedParameters:
691
+ Enabled: true
692
+
693
+ Style/NumberedParametersLimit:
694
+ Enabled: true
695
+
696
+ Style/NumericLiterals:
697
+ Enabled: true
698
+
699
+ Style/NumericPredicate:
700
+ Enabled: true
701
+
702
+ Style/ObjectThen:
703
+ Enabled: true
704
+
705
+ Style/OpenStructUse:
706
+ Enabled: true
707
+
708
+ Style/OperatorMethodCall:
709
+ Enabled: true
710
+
711
+ Style/OptionalBooleanParameter:
712
+ Enabled: true
713
+
714
+ Style/ParallelAssignment:
715
+ Enabled: true
716
+
717
+ Style/PercentQLiterals:
718
+ Enabled: true
719
+
720
+ Style/PerlBackrefs:
721
+ Enabled: true
722
+
723
+ Style/PreferredHashMethods:
724
+ Enabled: true
725
+
726
+ Style/QuotedSymbols:
727
+ Enabled: true
728
+
729
+ Style/RaiseArgs:
730
+ Enabled: true
731
+
732
+ Style/RedundantArgument:
733
+ Enabled: true
734
+
735
+ Style/RedundantCapitalW:
736
+ Enabled: true
737
+
738
+ Style/RedundantConstantBase:
739
+ Enabled: true
740
+
741
+ Style/RedundantDoubleSplatHashBraces:
742
+ Enabled: true
743
+
744
+ Style/RedundantEach:
745
+ Enabled: true
746
+
747
+ Style/RedundantInitialize:
748
+ Enabled: true
749
+
750
+ Style/RedundantSelfAssignment:
751
+ Enabled: true
752
+
753
+ Style/RedundantSelfAssignmentBranch:
754
+ Enabled: true
755
+
756
+ Style/RedundantStringEscape:
757
+ Enabled: true
758
+
759
+ Style/RegexpLiteral:
760
+ Enabled: true
761
+
762
+ Style/RescueStandardError:
763
+ EnforcedStyle: explicit
764
+
765
+ Style/SelectByRegexp:
766
+ Enabled: true
767
+
768
+ Style/SignalException:
769
+ Enabled: true
770
+
771
+ Style/SingleArgumentDig:
772
+ Enabled: true
773
+
774
+ Style/SingleLineMethods:
775
+ AllowIfMethodIsEmpty: true
776
+
777
+ Style/SoleNestedConditional:
778
+ Enabled: true
779
+
780
+ Style/SpecialGlobalVars:
781
+ Enabled: true
782
+
783
+ Style/StringChars:
784
+ Enabled: true
785
+
786
+ Style/StringConcatenation:
787
+ Enabled: true
788
+
789
+ Style/StringLiterals:
790
+ EnforcedStyle: single_quotes
791
+
792
+ Style/StringLiteralsInInterpolation:
793
+ EnforcedStyle: single_quotes
794
+
795
+ Style/StructInheritance:
796
+ Enabled: true
797
+
798
+ Style/SwapValues:
799
+ Enabled: true
800
+
801
+ Style/SymbolArray:
802
+ Enabled: true
803
+
804
+ Style/SymbolProc:
805
+ Enabled: true
806
+
807
+ Style/TernaryParentheses:
808
+ EnforcedStyle: require_no_parentheses
809
+
810
+ Style/TrailingUnderscoreVariable:
811
+ Enabled: true
812
+
813
+ Style/TrivialAccessors:
814
+ AllowDSLWriters: true
815
+ IgnoreClassMethods: false
816
+
817
+ Style/WhileUntilModifier:
818
+ Enabled: true
819
+
820
+ Style/WordArray:
821
+ Enabled: true
822
+
823
+ Style/YodaExpression:
824
+ Enabled: true
825
+
826
+ Style/ZeroLengthPredicate:
827
+ Enabled: true
828
+
829
+ AllCops:
830
+ NewCops: enable
831
+ Exclude:
832
+ - 'bin/**/*'
833
+ - 'script/**/*'
834
+ - 'log/**/*'
835
+ - 'public/**/*'
836
+ - 'tmp/**/*'
837
+ - 'db/schema.rb'
838
+ - 'vendor/**/*'
839
+ - 'node_modules/**/*'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Renuocop
4
- VERSION = "0.1.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: renuocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Rodi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - ">"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - ">"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rails
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +80,7 @@ files:
80
80
  - LICENSE.txt
81
81
  - README.md
82
82
  - Rakefile
83
+ - config/base.yml
83
84
  - lib/renuocop.rb
84
85
  - lib/renuocop/version.rb
85
86
  - sig/renuocop.rbs