rubocop-govuk 5.1.10 → 5.1.11
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/CHANGELOG.md +4 -0
- data/config/rails.yml +8 -0
- 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: 6e3c0d190a7c990ea9535aa2457f553d671dec658927cf8f0c407811b51697b3
|
4
|
+
data.tar.gz: 9715dabfc5cff28d978c895406c9426c4d26bfec0c54f02e2a39feffef8b1478
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50467456dc45080158547994610b39acbbb2028578d80bd19c8d94e0b74e4ed280e67a5d4629ab95b15788c9ebfc7f543b6f70ed1a457093c6174b5fe48f2d61
|
7
|
+
data.tar.gz: d34d61ad518f619ce0cec936d80b48db8a9639cda9d6324fe943f6505d93fbaa10c115004cace064f06eb458ac6350da043212d6780216848f4e738a3774f2cf
|
data/CHANGELOG.md
CHANGED
data/config/rails.yml
CHANGED
@@ -92,3 +92,11 @@ Rails/SaveBang:
|
|
92
92
|
# about whether we mean 'Time[.zone].now'.
|
93
93
|
Rails/TimeZone:
|
94
94
|
EnforcedStyle: "strict"
|
95
|
+
|
96
|
+
# This rule to avoid using instance variables in helpers
|
97
|
+
# is over aggressive and is catching helper tests and helpers specs
|
98
|
+
# as well. Minitests that don't use the Rspec let convention need
|
99
|
+
# instance variables to do the testing. Excluding them from the rule.
|
100
|
+
Rails/HelperInstanceVariable:
|
101
|
+
Exclude:
|
102
|
+
- '**/*_test.rb'
|