standard 1.45.0 → 1.47.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: 6ee0e74f6cfd7408d24356f8fa836ac18c29195c06c01ae1018abb0aca395990
4
- data.tar.gz: 23da8da2abdab699a7ed14039292677eb6c75a0167fe98acddd74e5cf63a0829
3
+ metadata.gz: 840fcb4ce3ed7b684f1d9f56e467a16be1a8dbce72592ebd5998e57b0f25c08f
4
+ data.tar.gz: a998d8f1a4c2587d936c50020fc91f0cc06e92dc4d861d6ba15fac4118639501
5
5
  SHA512:
6
- metadata.gz: 337e1473e99a7b6ef5b46215ff0442fb860a2602407836dbb3e67c6a949468b6601cc2eef9499a3e4c3a09da227a9f4fbf9da1cb0ea4ab4e68d582f3079552cc
7
- data.tar.gz: 353ff9f93558477fd4ec1e4435013e91405cc9dd062ecfec59d706b5b8764f71103eec2323b941ca18c91c9825f7415b867c81d7a4e967ad728099db3f8f28c5
6
+ metadata.gz: a694531c92146d0e5f9f1243b3285f22d45b743bbefd0c1732f9e661c8a698ad76fad7d81d2497ae604ec70e8ca1a58241e1b06ffdc3fef0fae6818ba6ca287a
7
+ data.tar.gz: d60e41d88e80c93ad1cdd1ee210df2ad26ec7fe60a2b374f3969a37956345c2c8e5e90c9ecc3b368451347249c7260d4d8c70b863fce51c8f8eedf61c6234be9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.47.0
4
+
5
+ * Updates standard performance to 1.7.0
6
+
7
+ ## 1.46.0
8
+
9
+ * Updates rubocop to [1.73.2](https://github.com/rubocop/rubocop/tree/v1.73.2)
10
+
3
11
  ## 1.45.0
4
12
 
5
13
  * Updates rubocop to [1.71.0](https://github.com/rubocop/rubocop/tree/v1.71.0)
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.45.0)
4
+ standard (1.47.0)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  lint_roller (~> 1.0)
7
- rubocop (~> 1.71.0)
7
+ rubocop (~> 1.73.0)
8
8
  standard-custom (~> 1.0.0)
9
- standard-performance (~> 1.6)
9
+ standard-performance (~> 1.7)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
@@ -34,21 +34,23 @@ GEM
34
34
  rbs (3.5.2)
35
35
  logger
36
36
  regexp_parser (2.9.3)
37
- rubocop (1.71.0)
37
+ rubocop (1.73.2)
38
38
  json (~> 2.3)
39
- language_server-protocol (>= 3.17.0)
39
+ language_server-protocol (~> 3.17.0.2)
40
+ lint_roller (~> 1.1.0)
40
41
  parallel (~> 1.10)
41
42
  parser (>= 3.3.0.2)
42
43
  rainbow (>= 2.2.2, < 4.0)
43
44
  regexp_parser (>= 2.9.3, < 3.0)
44
- rubocop-ast (>= 1.36.2, < 2.0)
45
+ rubocop-ast (>= 1.38.0, < 2.0)
45
46
  ruby-progressbar (~> 1.7)
46
47
  unicode-display_width (>= 2.4.0, < 4.0)
47
- rubocop-ast (1.36.2)
48
+ rubocop-ast (1.38.1)
48
49
  parser (>= 3.3.1.0)
49
- rubocop-performance (1.23.0)
50
- rubocop (>= 1.48.1, < 2.0)
51
- rubocop-ast (>= 1.31.1, < 2.0)
50
+ rubocop-performance (1.24.0)
51
+ lint_roller (~> 1.1)
52
+ rubocop (>= 1.72.1, < 2.0)
53
+ rubocop-ast (>= 1.38.0, < 2.0)
52
54
  ruby-lsp (0.17.7)
53
55
  language_server-protocol (~> 3.17.0)
54
56
  prism (>= 0.29.0, < 0.31)
@@ -65,9 +67,9 @@ GEM
65
67
  standard-custom (1.0.2)
66
68
  lint_roller (~> 1.0)
67
69
  rubocop (~> 1.50)
68
- standard-performance (1.6.0)
70
+ standard-performance (1.7.0)
69
71
  lint_roller (~> 1.1)
70
- rubocop-performance (~> 1.23.0)
72
+ rubocop-performance (~> 1.24.0)
71
73
  unicode-display_width (2.5.0)
72
74
 
73
75
  PLATFORMS
data/config/base.yml CHANGED
@@ -474,6 +474,9 @@ Lint/ConstantReassignment:
474
474
  Lint/ConstantResolution:
475
475
  Enabled: false
476
476
 
477
+ Lint/CopDirectiveSyntax:
478
+ Enabled: true
479
+
477
480
  Lint/Debugger:
478
481
  Enabled: true
479
482
 
@@ -714,6 +717,9 @@ Lint/RedundantSplatExpansion:
714
717
  Lint/RedundantStringCoercion:
715
718
  Enabled: true
716
719
 
720
+ Lint/RedundantTypeConversion:
721
+ Enabled: true
722
+
717
723
  Lint/RedundantWithIndex:
718
724
  Enabled: true
719
725
 
@@ -793,6 +799,10 @@ Lint/StructNewOverride:
793
799
  Lint/SuppressedException:
794
800
  Enabled: false
795
801
 
802
+ Lint/SuppressedExceptionInNumberConversion:
803
+ Enabled: true
804
+ AutoCorrect: false
805
+
796
806
  Lint/SymbolConversion:
797
807
  Enabled: true
798
808
 
@@ -853,6 +863,9 @@ Lint/UselessAccessModifier:
853
863
  Lint/UselessAssignment:
854
864
  Enabled: true
855
865
 
866
+ Lint/UselessConstantScoping:
867
+ Enabled: true
868
+
856
869
  Lint/UselessDefined:
857
870
  Enabled: true
858
871
 
@@ -1620,6 +1633,9 @@ Style/RedundantFileExtensionInRequire:
1620
1633
  Style/RedundantFilterChain:
1621
1634
  Enabled: false
1622
1635
 
1636
+ Style/RedundantFormat:
1637
+ Enabled: true
1638
+
1623
1639
  Style/RedundantFreeze:
1624
1640
  Enabled: true
1625
1641
 
data/config/ruby-2.5.yml CHANGED
@@ -5,3 +5,6 @@ AllCops:
5
5
 
6
6
  Style/SlicingWithRange:
7
7
  Enabled: false
8
+
9
+ Lint/SuppressedExceptionInNumberConversion:
10
+ Enabled: false
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.45.0")
2
+ VERSION = Gem::Version.new("1.47.0")
3
3
  end
data/standard.gemspec CHANGED
@@ -21,11 +21,11 @@ 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.71.0"
24
+ spec.add_dependency "rubocop", "~> 1.73.0"
25
25
 
26
26
  spec.add_dependency "lint_roller", "~> 1.0"
27
27
  spec.add_dependency "standard-custom", "~> 1.0.0"
28
- spec.add_dependency "standard-performance", "~> 1.6"
28
+ spec.add_dependency "standard-performance", "~> 1.7"
29
29
 
30
30
  # not semver: first three are lsp protocol version, last is patch
31
31
  spec.add_dependency "language_server-protocol", "~> 3.17.0.2"
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.45.0
4
+ version: 1.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-02-11 00:00:00.000000000 Z
10
+ date: 2025-03-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.71.0
18
+ version: 1.73.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.71.0
25
+ version: 1.73.0
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: lint_roller
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -57,14 +57,14 @@ dependencies:
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '1.6'
60
+ version: '1.7'
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '1.6'
67
+ version: '1.7'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: language_server-protocol
70
70
  requirement: !ruby/object:Gem::Requirement