standard 1.44.0 → 1.45.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '04918992d9b58c817d0721df32755f11ab74f786a53677107c27948b8a4cf622'
4
- data.tar.gz: ae1b3e3635588893ac5ef45915c93d3b56ab70c0e3c20638842a69835cee2243
3
+ metadata.gz: 6ee0e74f6cfd7408d24356f8fa836ac18c29195c06c01ae1018abb0aca395990
4
+ data.tar.gz: 23da8da2abdab699a7ed14039292677eb6c75a0167fe98acddd74e5cf63a0829
5
5
  SHA512:
6
- metadata.gz: dacde9282ca5358769cf0118da0a07c5e20ec53306ef83988d36c57ed05508ce1cad69be57d55b1a7bfda88300207133190d9cd150c9d6d229ecd58c273d7fcb
7
- data.tar.gz: 8cae0bfd2fe8aeb55987fbeb64362ed7a15422ce44bda5f6d615f7ce792571cd6ed8b450423f00b77f218ce0c456cd48a095d08012578d1fee679e0533401719
6
+ metadata.gz: 337e1473e99a7b6ef5b46215ff0442fb860a2602407836dbb3e67c6a949468b6601cc2eef9499a3e4c3a09da227a9f4fbf9da1cb0ea4ab4e68d582f3079552cc
7
+ data.tar.gz: 353ff9f93558477fd4ec1e4435013e91405cc9dd062ecfec59d706b5b8764f71103eec2323b941ca18c91c9825f7415b867c81d7a4e967ad728099db3f8f28c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.45.0
4
+
5
+ * Updates rubocop to [1.71.0](https://github.com/rubocop/rubocop/tree/v1.71.0)
6
+
3
7
  ## 1.44.0
4
8
 
5
9
  * Updates rubocop to [1.70.0](https://github.com/rubocop/rubocop/tree/v1.70.0)
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.44.0)
4
+ standard (1.45.0)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  lint_roller (~> 1.0)
7
- rubocop (~> 1.70.0)
7
+ rubocop (~> 1.71.0)
8
8
  standard-custom (~> 1.0.0)
9
9
  standard-performance (~> 1.6)
10
10
 
@@ -34,7 +34,7 @@ GEM
34
34
  rbs (3.5.2)
35
35
  logger
36
36
  regexp_parser (2.9.3)
37
- rubocop (1.70.0)
37
+ rubocop (1.71.0)
38
38
  json (~> 2.3)
39
39
  language_server-protocol (>= 3.17.0)
40
40
  parallel (~> 1.10)
data/config/base.yml CHANGED
@@ -439,6 +439,10 @@ Lint/AmbiguousRange:
439
439
  Lint/AmbiguousRegexpLiteral:
440
440
  Enabled: true
441
441
 
442
+ Lint/ArrayLiteralInRegexp:
443
+ Enabled: true
444
+ AutoCorrect: false
445
+
442
446
  Lint/AssignmentInCondition:
443
447
  Enabled: true
444
448
  AllowSafeAssignment: true
@@ -1279,6 +1283,9 @@ Style/HashExcept:
1279
1283
  Style/HashLikeCase:
1280
1284
  Enabled: false
1281
1285
 
1286
+ Style/HashSlice:
1287
+ Enabled: true
1288
+
1282
1289
  Style/HashSyntax:
1283
1290
  Enabled: true
1284
1291
  EnforcedStyle: ruby19_no_mixed_keys
data/config/ruby-2.4.yml CHANGED
@@ -5,3 +5,6 @@ AllCops:
5
5
 
6
6
  Style/RedundantBegin:
7
7
  Enabled: false
8
+
9
+ Style/HashSlice:
10
+ Enabled: false
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.44.0")
2
+ VERSION = Gem::Version.new("1.45.0")
3
3
  end
data/standard.gemspec CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.require_paths = ["lib"]
22
22
  spec.metadata["rubygems_mfa_required"] = "true"
23
23
 
24
- spec.add_dependency "rubocop", "~> 1.70.0"
24
+ spec.add_dependency "rubocop", "~> 1.71.0"
25
25
 
26
26
  spec.add_dependency "lint_roller", "~> 1.0"
27
27
  spec.add_dependency "standard-custom", "~> 1.0.0"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-14 00:00:00.000000000 Z
10
+ date: 2025-02-11 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: 1.70.0
18
+ version: 1.71.0
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: 1.70.0
25
+ version: 1.71.0
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: lint_roller
28
28
  requirement: !ruby/object:Gem::Requirement