rubocop-katalyst 3.0.0 → 3.0.1
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 +4 -4
- data/config/rubocop-rails.yml +4 -0
- data/config/rubocop-rspec.yml +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a3da31c89d2b9f9926408c588371742a0ae1d8b912c56cb44273616135b528c
|
|
4
|
+
data.tar.gz: 308439a55bc2d7c2d40a43f1d5eaf879a53d599a707f1366cf802703cfe62d83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75bf1de953b0125adab24812789f19fe06dbb96c67f608a824d97fbbdc77185b08a855d18b2d3d36108cccfd53cd264220f34e49f67864f88442854b5cd09623
|
|
7
|
+
data.tar.gz: 9c8d94ef1dddc927453f8f3548d4410c92a4d1eb1cd48873ba4b29122031c14e88021d430f830d98a145352ef188b01decb8dd1cae7f6546aefde520cd84b73e
|
data/config/rubocop-rails.yml
CHANGED
|
@@ -33,6 +33,10 @@ Rails/HasAndBelongsToMany:
|
|
|
33
33
|
Description: 'Prefer has_many :through to has_and_belongs_to_many.'
|
|
34
34
|
Enabled: false
|
|
35
35
|
|
|
36
|
+
Rails/I18nLocaleTexts:
|
|
37
|
+
Exclude:
|
|
38
|
+
- app/controllers/admin/**/*
|
|
39
|
+
|
|
36
40
|
Rails/Output:
|
|
37
41
|
Description: 'Checks for calls to puts, print, etc.'
|
|
38
42
|
Enabled: false
|
data/config/rubocop-rspec.yml
CHANGED
|
@@ -23,6 +23,7 @@ RSpec/ExampleLength:
|
|
|
23
23
|
Exclude:
|
|
24
24
|
- spec/features/**/*
|
|
25
25
|
- spec/system/**/*
|
|
26
|
+
Max: 15
|
|
26
27
|
|
|
27
28
|
RSpec/MultipleExpectations:
|
|
28
29
|
Exclude:
|
|
@@ -30,7 +31,7 @@ RSpec/MultipleExpectations:
|
|
|
30
31
|
- spec/system/**/*
|
|
31
32
|
|
|
32
33
|
RSpec/MultipleMemoizedHelpers:
|
|
33
|
-
|
|
34
|
+
Max: 10
|
|
34
35
|
|
|
35
36
|
RSpec/RepeatedExample:
|
|
36
37
|
Exclude:
|