standard-rubocop-lts 2.0.7 → 2.0.8
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +15 -1
- data/CONTRIBUTING.md +4 -1
- data/lib/standard/rubocop/lts/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +10 -34
- metadata.gz.sig +0 -0
- data/certs/pboling.pem +0 -27
- data/config/internal/base.yml +0 -49
- data/config/internal/ruby-1.8.yml +0 -22
- data/config/internal/ruby-1.9.yml +0 -48
- data/config/internal/ruby-2.0.yml +0 -10
- data/config/internal/ruby-2.1.yml +0 -4
- data/config/internal/ruby-2.2.yml +0 -9
- data/config/internal/ruby-2.3.yml +0 -4
- data/config/internal/ruby-2.4.yml +0 -4
- data/config/internal/ruby-2.5.yml +0 -4
- data/config/internal/ruby-2.6.yml +0 -4
- data/config/internal/ruby-2.7.yml +0 -4
- data/config/internal/ruby-3.0.yml +0 -4
- data/config/internal/ruby-3.1.yml +0 -4
- data/config/internal/ruby-3.2.yml +0 -4
- data/config/internal/ruby-3.3.yml +0 -5
- data/config/internal/ruby-3.4.yml +0 -4
- data/config/internal/ruby-3.5.yml +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d15c4d06eb613137d4e6f29a799d25da1f09e3745166e27cf3d1a8d507e6bd63
|
|
4
|
+
data.tar.gz: 9c408187d94b0d723e3fd95424008de75f7a9f6afa0d28e73699ebdbdeb4f3e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f8d985e619f91ab708e0e595174e6eb981412aa95e928b668785681dcf5022c03ee30645eb11d087b4c4a9fed320ce31dbcf3f09d9c30db44578f608b7d232e
|
|
7
|
+
data.tar.gz: 6487940c6016ac2cf25267f534b59afce6754794f81eda819d46312239c2bc174cad3056aea85420d07a345ae5f2dfe65435a197e6e7f09ca6de0a82d4ee89fd
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,18 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.8] - 2026-06-28
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.8][2.0.8t]
|
|
36
|
+
- COVERAGE: 100.00% -- 19/19 lines in 4 files
|
|
37
|
+
- BRANCH COVERAGE: 0.00% -- 0/0 branches in 4 files
|
|
38
|
+
- 71.43% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Restored the gemspec `spec.files` declaration so packaged gems include the
|
|
43
|
+
intended public files and configuration payload.
|
|
44
|
+
|
|
33
45
|
## [2.0.7] - 2026-06-25
|
|
34
46
|
|
|
35
47
|
- TAG: [v2.0.7][2.0.7t]
|
|
@@ -286,7 +298,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
286
298
|
|
|
287
299
|
- Initial release
|
|
288
300
|
|
|
289
|
-
[Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.
|
|
301
|
+
[Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.8...HEAD
|
|
302
|
+
[2.0.8]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.7...v2.0.8
|
|
303
|
+
[2.0.8t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.8
|
|
290
304
|
[2.0.7]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.5...v2.0.7
|
|
291
305
|
[2.0.7t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.7
|
|
292
306
|
[2.0.5]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.4...v2.0.5
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standard-rubocop-lts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -126,7 +126,7 @@ dependencies:
|
|
|
126
126
|
version: '2.2'
|
|
127
127
|
- - ">="
|
|
128
128
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: 2.2.
|
|
129
|
+
version: 2.2.20
|
|
130
130
|
type: :development
|
|
131
131
|
prerelease: false
|
|
132
132
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -136,7 +136,7 @@ dependencies:
|
|
|
136
136
|
version: '2.2'
|
|
137
137
|
- - ">="
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 2.2.
|
|
139
|
+
version: 2.2.20
|
|
140
140
|
- !ruby/object:Gem::Dependency
|
|
141
141
|
name: bundler-audit
|
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -157,20 +157,14 @@ dependencies:
|
|
|
157
157
|
requirements:
|
|
158
158
|
- - "~>"
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version: '13.
|
|
161
|
-
- - ">="
|
|
162
|
-
- !ruby/object:Gem::Version
|
|
163
|
-
version: 13.4.2
|
|
160
|
+
version: '13.0'
|
|
164
161
|
type: :development
|
|
165
162
|
prerelease: false
|
|
166
163
|
version_requirements: !ruby/object:Gem::Requirement
|
|
167
164
|
requirements:
|
|
168
165
|
- - "~>"
|
|
169
166
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: '13.
|
|
171
|
-
- - ">="
|
|
172
|
-
- !ruby/object:Gem::Version
|
|
173
|
-
version: 13.4.2
|
|
167
|
+
version: '13.0'
|
|
174
168
|
- !ruby/object:Gem::Dependency
|
|
175
169
|
name: require_bench
|
|
176
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -220,7 +214,7 @@ dependencies:
|
|
|
220
214
|
version: '2.0'
|
|
221
215
|
- - ">="
|
|
222
216
|
- !ruby/object:Gem::Version
|
|
223
|
-
version: 2.0.
|
|
217
|
+
version: 2.0.8
|
|
224
218
|
type: :development
|
|
225
219
|
prerelease: false
|
|
226
220
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -230,7 +224,7 @@ dependencies:
|
|
|
230
224
|
version: '2.0'
|
|
231
225
|
- - ">="
|
|
232
226
|
- !ruby/object:Gem::Version
|
|
233
|
-
version: 2.0.
|
|
227
|
+
version: 2.0.8
|
|
234
228
|
- !ruby/object:Gem::Dependency
|
|
235
229
|
name: turbo_tests2
|
|
236
230
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -492,25 +486,7 @@ files:
|
|
|
492
486
|
- README.md
|
|
493
487
|
- RUBOCOP.md
|
|
494
488
|
- SECURITY.md
|
|
495
|
-
- certs/pboling.pem
|
|
496
489
|
- config/base.yml
|
|
497
|
-
- config/internal/base.yml
|
|
498
|
-
- config/internal/ruby-1.8.yml
|
|
499
|
-
- config/internal/ruby-1.9.yml
|
|
500
|
-
- config/internal/ruby-2.0.yml
|
|
501
|
-
- config/internal/ruby-2.1.yml
|
|
502
|
-
- config/internal/ruby-2.2.yml
|
|
503
|
-
- config/internal/ruby-2.3.yml
|
|
504
|
-
- config/internal/ruby-2.4.yml
|
|
505
|
-
- config/internal/ruby-2.5.yml
|
|
506
|
-
- config/internal/ruby-2.6.yml
|
|
507
|
-
- config/internal/ruby-2.7.yml
|
|
508
|
-
- config/internal/ruby-3.0.yml
|
|
509
|
-
- config/internal/ruby-3.1.yml
|
|
510
|
-
- config/internal/ruby-3.2.yml
|
|
511
|
-
- config/internal/ruby-3.3.yml
|
|
512
|
-
- config/internal/ruby-3.4.yml
|
|
513
|
-
- config/internal/ruby-3.5.yml
|
|
514
490
|
- config/ruby-1.8.yml
|
|
515
491
|
- config/ruby-1.9.yml
|
|
516
492
|
- config/ruby-2.0.yml
|
|
@@ -538,10 +514,10 @@ licenses:
|
|
|
538
514
|
- MIT
|
|
539
515
|
metadata:
|
|
540
516
|
homepage_uri: https://standard-rubocop-lts.galtzo.com
|
|
541
|
-
source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.
|
|
542
|
-
changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.
|
|
517
|
+
source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.8
|
|
518
|
+
changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.8/CHANGELOG.md
|
|
543
519
|
bug_tracker_uri: https://github.com/rubocop-lts/standard-rubocop-lts/issues
|
|
544
|
-
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/2.0.
|
|
520
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/2.0.8
|
|
545
521
|
funding_uri: https://github.com/sponsors/pboling
|
|
546
522
|
wiki_uri: https://github.com/rubocop-lts/standard-rubocop-lts/wiki
|
|
547
523
|
news_uri: https://www.railsbling.com/tags/standard-rubocop-lts
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/certs/pboling.pem
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
|
2
|
-
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
3
|
-
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
4
|
-
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
5
|
-
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
6
|
-
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
7
|
-
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
8
|
-
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
9
|
-
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
10
|
-
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
11
|
-
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
12
|
-
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
13
|
-
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
14
|
-
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
15
|
-
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
16
|
-
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
17
|
-
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
18
|
-
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
19
|
-
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
20
|
-
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
21
|
-
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
22
|
-
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
23
|
-
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
24
|
-
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
25
|
-
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
26
|
-
L9nRqA==
|
|
27
|
-
-----END CERTIFICATE-----
|
data/config/internal/base.yml
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Alphabetizing lists enforces minimal churn in git history post-correction
|
|
2
|
-
Bundler/OrderedGems:
|
|
3
|
-
Enabled: true
|
|
4
|
-
|
|
5
|
-
Gemspec/DependencyVersion:
|
|
6
|
-
Enabled: true
|
|
7
|
-
EnforcedStyle: required
|
|
8
|
-
|
|
9
|
-
# See: https://github.com/rubygems/rubygems/discussions/5065#discussioncomment-7031586
|
|
10
|
-
Gemspec/DevelopmentDependencies:
|
|
11
|
-
Enabled: true
|
|
12
|
-
EnforcedStyle: gemspec
|
|
13
|
-
|
|
14
|
-
# Alphabetizing lists enforces minimal churn in git history
|
|
15
|
-
Gemspec/OrderedDependencies:
|
|
16
|
-
Enabled: true
|
|
17
|
-
|
|
18
|
-
Gemspec/RequiredRubyVersion:
|
|
19
|
-
Enabled: true
|
|
20
|
-
|
|
21
|
-
Gemspec/RubyVersionGlobalsUsage:
|
|
22
|
-
Enabled: true
|
|
23
|
-
|
|
24
|
-
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
|
25
|
-
Performance/ArraySemiInfiniteRangeSlice:
|
|
26
|
-
Enabled: false
|
|
27
|
-
|
|
28
|
-
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
|
29
|
-
Performance/BigDecimalWithNumericArgument:
|
|
30
|
-
Enabled: false
|
|
31
|
-
|
|
32
|
-
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1375527811
|
|
33
|
-
Performance/BlockGivenWithExplicitBlock:
|
|
34
|
-
Enabled: false
|
|
35
|
-
|
|
36
|
-
# See:
|
|
37
|
-
# https://github.com/rubocop/rubocop-performance/issues/240
|
|
38
|
-
# https://github.com/rubocop/rubocop-performance/pull/241
|
|
39
|
-
Performance/Casecmp:
|
|
40
|
-
Enabled: false
|
|
41
|
-
|
|
42
|
-
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
|
43
|
-
Performance/IoReadlines:
|
|
44
|
-
Enabled: false
|
|
45
|
-
|
|
46
|
-
# This cop is 66% incorrect, and hasn't been fixed in 2+ years.
|
|
47
|
-
# See: https://github.com/rubocop/rubocop-rake/issues/42
|
|
48
|
-
Rake/MethodDefinitionInTask:
|
|
49
|
-
Enabled: false
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
inherit_from: ./ruby-1.9.yml
|
|
2
|
-
|
|
3
|
-
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
|
4
|
-
# AllCops:
|
|
5
|
-
# TargetRubyVersion: 1.8
|
|
6
|
-
|
|
7
|
-
##############################################################################
|
|
8
|
-
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
|
9
|
-
# These are not in standard, and are the primary reason this gem exists. #
|
|
10
|
-
##############################################################################
|
|
11
|
-
|
|
12
|
-
# Ruby 1.8.7 needs the . on chain of method calls at the end of a line
|
|
13
|
-
# This cop is disabled for Ruby 1.8 in Standard, which is doesn't help
|
|
14
|
-
# RuboCop/Standard users ensure their codebase remains compatible with Ruby 1.8
|
|
15
|
-
# As such we override here!
|
|
16
|
-
# See: https://github.com/standardrb/standard/issues/561
|
|
17
|
-
Layout/DotPosition:
|
|
18
|
-
EnforcedStyle: trailing
|
|
19
|
-
|
|
20
|
-
# Disabled in standard's base.yml. Keeping here in case it is removed from base.
|
|
21
|
-
Style/Documentation:
|
|
22
|
-
Enabled: false
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
inherit_from: ./ruby-2.0.yml
|
|
2
|
-
|
|
3
|
-
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
|
4
|
-
# AllCops:
|
|
5
|
-
# TargetRubyVersion: 1.9
|
|
6
|
-
|
|
7
|
-
# Standard's rules in base.yml do not work with Ruby < 2.0, so overriding.
|
|
8
|
-
# See: https://github.com/standardrb/standard/pull/563#issuecomment-1567471055
|
|
9
|
-
# Percent delimiters are not supported until Ruby 2.0
|
|
10
|
-
Style/PercentLiteralDelimiters:
|
|
11
|
-
Enabled: false
|
|
12
|
-
|
|
13
|
-
# Percent delimiters are not supported until Ruby 2.0
|
|
14
|
-
# Standard doesn't include this rule, because Ruby version compatibility
|
|
15
|
-
# isn't a primary concern for Standard.
|
|
16
|
-
# However, it is a primary concern for rubocop-lts.
|
|
17
|
-
Style/SymbolArray:
|
|
18
|
-
Enabled: true
|
|
19
|
-
EnforcedStyle: brackets
|
|
20
|
-
|
|
21
|
-
# Percent delimiters are not supported until Ruby 2.0
|
|
22
|
-
# Standard doesn't include this rule, because Ruby version compatibility
|
|
23
|
-
# isn't a primary concern for Standard.
|
|
24
|
-
# However, it is a primary concern for rubocop-lts.
|
|
25
|
-
Style/WordArray:
|
|
26
|
-
Enabled: true
|
|
27
|
-
EnforcedStyle: brackets
|
|
28
|
-
|
|
29
|
-
##############################################################################
|
|
30
|
-
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
|
31
|
-
# These are not in standard, and are a secondary reason this gem exists. #
|
|
32
|
-
##############################################################################
|
|
33
|
-
|
|
34
|
-
# Disabled in standard's base.yml, which allows magic encoding comments to live on.
|
|
35
|
-
# Reproducing here, in case Standard Ruby drops the config.
|
|
36
|
-
#
|
|
37
|
-
Style/Encoding:
|
|
38
|
-
Enabled: false
|
|
39
|
-
# The encoding comments can be removed once a project drops Ruby 1.9 support.
|
|
40
|
-
# Whole file UTF-8 Encoding is default in Ruby 2+, so the Encoding comment is usually not needed there.
|
|
41
|
-
# See:
|
|
42
|
-
# * https://www.rubydoc.info/gems/rubocop/0.49.0/RuboCop/Cop/Style/Encoding
|
|
43
|
-
# * https://rubydoc.info/gems/rubocop/RuboCop/Cop/Style/Encoding
|
|
44
|
-
# Unfortunately in latest RuboCop there is only a "never" style enforced (i.e. encodings are always bad).
|
|
45
|
-
# TODO: Consider bringing back this rule as a new Cop (extracted from old RuboCop)
|
|
46
|
-
#Style/Encoding:
|
|
47
|
-
# Enabled: true
|
|
48
|
-
# EnforcedStyle: always
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
inherit_from: ./ruby-2.1.yml
|
|
2
|
-
|
|
3
|
-
AllCops:
|
|
4
|
-
TargetRubyVersion: 2.0
|
|
5
|
-
|
|
6
|
-
# Disabled by Standard, which doesn't help compat, so overriding for Ruby < 2.1
|
|
7
|
-
# See: https://github.com/standardrb/standard/blob/main/config/ruby-1.9.yml#L6C1-L6C21
|
|
8
|
-
Style/HashConversion:
|
|
9
|
-
Enabled: true
|
|
10
|
-
AllowSplatArgument: false
|