gc_ruboconfig 2.33.0 → 3.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/rails.yml +86 -0
  3. data/rubocop.yml +0 -84
  4. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af052d7ef97fa16a0fd639259e6e5d08bafa2c43d0bb122b7171e921afd225fc
4
- data.tar.gz: bb552206655d79859cd17d379d8a08db685b89e486d47b2d43deed4810f6fa14
3
+ metadata.gz: f851228ed2c4e0b9142708b3145e26c5988dd239c789c4d7b5bb0b3b0a80d7fd
4
+ data.tar.gz: 1463b5dc0e97b339552d49289097d03395b11b99fe9c3f2a52f65aa7914f7424
5
5
  SHA512:
6
- metadata.gz: 613e51d5b4c73266020649009a19b18743e1a1dcfdbb103ab31ab50235dd185aa50f8647a34c10f2ffb1952aec555cb20ec9f4f4373d997a82cb3bf5d2015ab7
7
- data.tar.gz: 878380ad91da9591607a48f46e0d6e617e031a92dfbb338e76e8eb78f55c6215e721693aacf67d2f1d97b056edb98903972a94669ae6ca9f7c88493270250f35
6
+ metadata.gz: 7364e7da3b76daaa1ecdcf8c3bc70116917432c2875fc5f63f60de3d8a92eee63aa04c6dd62c93f8d9733b41729919997b1d971adc40a3f6cdd2187563ae4d75
7
+ data.tar.gz: 2a61f14446dee394aabc1a5e4171af8144d1fd1ac6ab8de4453307dc83f00a8f17bf54bdd7d28b51f5933194d00c4f553443ed21092daa30ab43d3346d451022
data/rails.yml ADDED
@@ -0,0 +1,86 @@
1
+ require:
2
+ - rubocop-rails
3
+
4
+ Rails/AddColumnIndex:
5
+ Enabled: false
6
+
7
+ Rails/CompactBlank:
8
+ Enabled: true
9
+
10
+ Rails/DurationArithmetic:
11
+ Enabled: true
12
+
13
+ Rails/EagerEvaluationLogMessage:
14
+ Enabled: true
15
+
16
+ Rails/ExpandedDateRange:
17
+ Enabled: true
18
+
19
+ Rails/I18nLocaleAssignment:
20
+ Enabled: true
21
+
22
+ Rails/RedundantPresenceValidationOnBelongsTo:
23
+ Enabled: true
24
+
25
+ Rails/RedundantTravelBack:
26
+ Enabled: true
27
+
28
+ Rails/RootJoinChain:
29
+ Enabled: true
30
+
31
+ Rails/TimeZoneAssignment:
32
+ Enabled: true
33
+
34
+ Rails/UnusedIgnoredColumns:
35
+ Enabled: true
36
+
37
+ Rails/ActiveRecordCallbacksOrder:
38
+ Enabled: true
39
+
40
+ Rails/AfterCommitOverride:
41
+ Enabled: true
42
+
43
+ Rails/AttributeDefaultBlockValue:
44
+ Enabled: true
45
+
46
+ Rails/FindById:
47
+ Enabled: true
48
+
49
+ Rails/Inquiry:
50
+ Enabled: true
51
+
52
+ Rails/MailerName:
53
+ Enabled: true
54
+
55
+ Rails/MatchRoute:
56
+ Enabled: true
57
+
58
+ Rails/NegateInclude:
59
+ Enabled: true
60
+
61
+ Rails/Pluck:
62
+ Enabled: true
63
+
64
+ Rails/PluckInWhere:
65
+ Enabled: true
66
+
67
+ Rails/RenderInline:
68
+ Enabled: true
69
+
70
+ Rails/RenderPlainText:
71
+ Enabled: true
72
+
73
+ Rails/ShortI18n:
74
+ Enabled: false
75
+
76
+ Rails/SquishedSQLHeredocs:
77
+ Enabled: true
78
+
79
+ Rails/WhereEquals:
80
+ Enabled: true
81
+
82
+ Rails/WhereExists:
83
+ Enabled: true
84
+
85
+ Rails/WhereNot:
86
+ Enabled: true
data/rubocop.yml CHANGED
@@ -566,87 +566,3 @@ Performance/ConcurrentMonotonicTime:
566
566
 
567
567
  Performance/StringIdentifierArgument:
568
568
  Enabled: true
569
-
570
- Rails/AddColumnIndex:
571
- Enabled: false
572
-
573
- Rails/CompactBlank:
574
- Enabled: true
575
-
576
- Rails/DurationArithmetic:
577
- Enabled: true
578
-
579
- Rails/EagerEvaluationLogMessage:
580
- Enabled: true
581
-
582
- Rails/ExpandedDateRange:
583
- Enabled: true
584
-
585
- Rails/I18nLocaleAssignment:
586
- Enabled: true
587
-
588
- Rails/RedundantPresenceValidationOnBelongsTo:
589
- Enabled: true
590
-
591
- Rails/RedundantTravelBack:
592
- Enabled: true
593
-
594
- Rails/RootJoinChain:
595
- Enabled: true
596
-
597
- Rails/TimeZoneAssignment:
598
- Enabled: true
599
-
600
- Rails/UnusedIgnoredColumns:
601
- Enabled: true
602
-
603
- Rails/ActiveRecordCallbacksOrder:
604
- Enabled: true
605
-
606
- Rails/AfterCommitOverride:
607
- Enabled: true
608
-
609
- Rails/AttributeDefaultBlockValue:
610
- Enabled: true
611
-
612
- Rails/FindById:
613
- Enabled: true
614
-
615
- Rails/Inquiry:
616
- Enabled: true
617
-
618
- Rails/MailerName:
619
- Enabled: true
620
-
621
- Rails/MatchRoute:
622
- Enabled: true
623
-
624
- Rails/NegateInclude:
625
- Enabled: true
626
-
627
- Rails/Pluck:
628
- Enabled: true
629
-
630
- Rails/PluckInWhere:
631
- Enabled: true
632
-
633
- Rails/RenderInline:
634
- Enabled: true
635
-
636
- Rails/RenderPlainText:
637
- Enabled: true
638
-
639
- Rails/ShortI18n:
640
- Enabled: false
641
-
642
- Rails/SquishedSQLHeredocs:
643
- Enabled: true
644
-
645
- Rails/WhereEquals:
646
- Enabled: true
647
-
648
- Rails/WhereExists:
649
- Enabled: true
650
-
651
- Rails/WhereNot:
652
- Enabled: true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gc_ruboconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.33.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - GoCardless
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-09 00:00:00.000000000 Z
11
+ date: 2022-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -73,6 +73,7 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - rails.yml
76
77
  - rubocop.yml
77
78
  homepage: https://github.com/gocardless/ruboconfig
78
79
  licenses: