makandra-rubocop 9.0.1 → 9.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/config/default.yml +2 -2
- data/lib/makandra_rubocop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c2a750eaabc48236dfa0d947d3a5fceb65c3a1806f607e6e3c25af41099db69
|
4
|
+
data.tar.gz: cf732ed1e6289c588451c258017ee36ac681051f4c663279ab8f9525ba5e8103
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 290c0cfb56bab6c05362b62c7ccee4db37788a1d682b1747af9b9270b4b3020efa77019bad5bb67721632e00003ae0de982dea6201daf6d60553672886828c56
|
7
|
+
data.tar.gz: 6d61a615a1c82fab8cff6c1d4dcef7a584af6396f7399e01cdc39382f80a24672053e145dce0060e57f97b2fdaa48a1da01a69594c505ec1b391e0f9d23724ad
|
data/CHANGELOG.md
CHANGED
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
9
9
|
### Compatible changes
|
10
10
|
|
11
11
|
|
12
|
+
## 9.1.0 - 2022-04-22
|
13
|
+
|
14
|
+
### Compatible changes
|
15
|
+
|
16
|
+
- Disable `Naming/BlockForwarding` (#37)
|
17
|
+
- Change `Style/HashSyntax` from `EnforcedShorthandSyntax` `always` to `either` (#36)
|
18
|
+
|
19
|
+
|
12
20
|
## 9.0.1 - 2022-03-09
|
13
21
|
|
14
22
|
### Compatible changes
|
data/config/default.yml
CHANGED
@@ -2494,7 +2494,7 @@ Naming/BinaryOperatorParameterName:
|
|
2494
2494
|
Naming/BlockForwarding:
|
2495
2495
|
Description: 'Use anonymous block forwarding.'
|
2496
2496
|
StyleGuide: '#block-forwarding'
|
2497
|
-
Enabled:
|
2497
|
+
Enabled: false # Voted for this in https://github.com/makandra/makandra-rubocop/issues/37
|
2498
2498
|
VersionAdded: '1.24'
|
2499
2499
|
EnforcedStyle: anonymous
|
2500
2500
|
SupportedStyles:
|
@@ -3703,7 +3703,7 @@ Style/HashSyntax:
|
|
3703
3703
|
# enforces both ruby19 and no_mixed_keys styles
|
3704
3704
|
- ruby19_no_mixed_keys
|
3705
3705
|
# Force hashes that have a hash value omission
|
3706
|
-
EnforcedShorthandSyntax:
|
3706
|
+
EnforcedShorthandSyntax: either # Voted in this issue https://github.com/makandra/makandra-rubocop/issues/36, but open for re-evaluation at a later point in time.
|
3707
3707
|
SupportedShorthandSyntax:
|
3708
3708
|
# forces use of the 3.1 syntax (e.g. {foo:}) when the hash key and value are the same.
|
3709
3709
|
- always
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: makandra-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.0
|
4
|
+
version: 9.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arne Hartherz
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-04-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubocop
|