aroundhome_cops 6.0.0 → 6.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/CHANGELOG.md +4 -0
- data/default.yml +5 -6
- data/lib/aroundhome_cops.rb +1 -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: 517552a00778127bcd6d59387e3bf7b37b9aaf5ebef291b955548413ceba9b6e
|
|
4
|
+
data.tar.gz: 83531d7101e998e0d121f985dc36d224a145f1bb25742b844811aa856515cacf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78161b654b59f80b7c96ee975910ba7ecb9aba9037035cf9486e721e21195dba76fb1397987185108920957e2b060a4735d35ab84c6cb83e79e279160b96e65d
|
|
7
|
+
data.tar.gz: 7462aa9cdb696eafd1bb4b1fa2f7637bf872d37062694c21c21dd19073b2e819a37f44e807de38d61086c5f8d9c4aa301cb361205b45bb72b49975b56108a68a
|
data/CHANGELOG.md
CHANGED
data/default.yml
CHANGED
|
@@ -134,6 +134,7 @@ Metrics/ParameterLists:
|
|
|
134
134
|
# People coming from other languages or our junior colleagues will find a single & confusing.
|
|
135
135
|
# Omitting the parameter name is neither more readable or helpful, therefore we prefer to use &block syntax.
|
|
136
136
|
Naming/BlockForwarding:
|
|
137
|
+
Enabled: true
|
|
137
138
|
EnforcedStyle: explicit
|
|
138
139
|
|
|
139
140
|
# Adding "and" prefix to list of allowed prefixes to allow for nested contexts
|
|
@@ -351,8 +352,6 @@ Lint/UselessRescue: # new in 1.43
|
|
|
351
352
|
Enabled: true
|
|
352
353
|
Metrics/CollectionLiteralLength: # new in 1.47
|
|
353
354
|
Enabled: true
|
|
354
|
-
Naming/BlockForwarding: # new in 1.24
|
|
355
|
-
Enabled: true
|
|
356
355
|
Style/ArrayIntersect: # new in 1.40
|
|
357
356
|
Enabled: true
|
|
358
357
|
Style/ComparableClamp: # new in 1.44
|
|
@@ -411,7 +410,7 @@ RSpec/ExcessiveDocstringSpacing: # (new in 2.5)
|
|
|
411
410
|
Enabled: true
|
|
412
411
|
RSpec/IdenticalEqualityAssertion: # (new in 2.4)
|
|
413
412
|
Enabled: true
|
|
414
|
-
|
|
413
|
+
RSpecRails/AvoidSetupHook: # (new in 2.4)
|
|
415
414
|
Enabled: true
|
|
416
415
|
RSpec/SubjectDeclaration: # (new in 2.5)
|
|
417
416
|
Enabled: true
|
|
@@ -423,11 +422,11 @@ RSpec/ChangeByZero: # new in 2.11.0
|
|
|
423
422
|
Enabled: true
|
|
424
423
|
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
|
425
424
|
Enabled: true
|
|
426
|
-
|
|
425
|
+
Capybara/SpecificMatcher: # new in 2.12
|
|
427
426
|
Enabled: true
|
|
428
|
-
|
|
427
|
+
FactoryBot/SyntaxMethods: # new in 2.7
|
|
429
428
|
Enabled: true
|
|
430
|
-
|
|
429
|
+
RSpecRails/HaveHttpStatus: # new in 2.12
|
|
431
430
|
Enabled: true
|
|
432
431
|
RSpec/RedundantPredicateMatcher: # new in 2.26
|
|
433
432
|
Enabled: true
|
data/lib/aroundhome_cops.rb
CHANGED