rubocop-vaporyhumo 0.4.0 → 0.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/SECURITY.md +2 -2
- data/config.yml +25 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b40d9eb61aebea939011d0f003e556eec518f449a4d3ff2beca0b6a33087e54
|
4
|
+
data.tar.gz: 1c9640c008ea75b270bea8dca54acf623e3049f8881f47885aa6ab48f64ce8f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd0d246c7f5814cbdb30cee4dd39d8325fd4305549bf434700af36310c0ce472f5c374b18236b0d66f1a9f8d256b6dfb95f637f4034602e2e26e052e40cd1f6c
|
7
|
+
data.tar.gz: b263bf6ee6418b02e4f352c1c296fd4efc23b8d5a53ca5a79ded8d1b15f20f2e72c2767d837d066363bc0e7cc89694a6646762358bbfc15dc2497ea61a4e57e1
|
data/CHANGELOG.md
CHANGED
@@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning][2].
|
|
9
9
|
[2]: https://semver.org/spec/v2.0.0.html
|
10
10
|
|
11
11
|
## [Unreleased]
|
12
|
+
|
13
|
+
|
14
|
+
## [0.5.0] - 2025-06-23
|
15
|
+
### Added
|
16
|
+
- `Naming/BlockForwarding` configuration
|
17
|
+
- `Naming/InclusiveLanguage` configuration
|
18
|
+
- `Naming/MemoizedInstanceVariableName` configuration
|
19
|
+
- `Naming/PredicateMethid` configuration
|
20
|
+
- `Naming/PredicatePrefix` configuration
|
21
|
+
- `Style/ColonMethodCall` disabled
|
22
|
+
|
23
|
+
### Changed
|
24
|
+
- `Metrics/ParameterLists` configuration: max parameters increased from 3 to 4
|
25
|
+
|
26
|
+
|
12
27
|
## [0.4.0] - 2025-06-23
|
13
28
|
### Added
|
14
29
|
- `Bundler/GemComment` configuration with version specifiers and GitHub enforcement
|
data/SECURITY.md
CHANGED
data/config.yml
CHANGED
@@ -90,12 +90,35 @@ Metrics/ModuleLength:
|
|
90
90
|
CountAsOne: ['array', 'hash', 'heredoc', 'method_call']
|
91
91
|
|
92
92
|
Metrics/ParameterLists:
|
93
|
-
Max:
|
93
|
+
Max: 4
|
94
94
|
|
95
95
|
Metrics/PerceivedComplexity:
|
96
96
|
Max: 7
|
97
97
|
|
98
98
|
|
99
|
+
# Naming
|
100
|
+
Naming/BlockForwarding:
|
101
|
+
Enabled: true
|
102
|
+
|
103
|
+
Naming/InclusiveLanguage:
|
104
|
+
Enabled: true
|
105
|
+
|
106
|
+
Naming/MemoizedInstanceVariableName:
|
107
|
+
EnforcedStyleForLeadingUnderscores: optional
|
108
|
+
|
109
|
+
Naming/PredicateMethod:
|
110
|
+
Enabled: true
|
111
|
+
|
112
|
+
Naming/PredicatePrefix:
|
113
|
+
Enabled: true
|
114
|
+
UseSorbetSigs: true
|
115
|
+
|
116
|
+
|
99
117
|
# Security
|
100
118
|
Security/CompoundHash:
|
101
|
-
Enabled: true
|
119
|
+
Enabled: true
|
120
|
+
|
121
|
+
|
122
|
+
# Style
|
123
|
+
Style/ColonMethodCall:
|
124
|
+
Enabled: false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-vaporyhumo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rodrigo Vilina (vaporyhumo)
|
@@ -96,6 +96,7 @@ licenses:
|
|
96
96
|
metadata:
|
97
97
|
homepage_uri: https://github.com/rodrigovilina/rubocop-vaporyhumo
|
98
98
|
changelog_uri: https://github.com/rodrigovilina/rubocop-vaporyhumo/blob/main/CHANGELOG.md
|
99
|
+
rubygems_mfa_required: 'true'
|
99
100
|
rdoc_options: []
|
100
101
|
require_paths:
|
101
102
|
- lib
|