Skip to content

Commit

Permalink
Merge pull request #629 from standardrb/updates-2024-05-14
Browse files Browse the repository at this point in the history
Updates to Rubocop 1.65.3 and updates std-perf
  • Loading branch information
camilopayan authored May 14, 2024
2 parents 9917773 + b922774 commit b1c66d1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Unreleased

* Updates rubocop to [1.63.5](https://github.com/rubocop/rubocop/releases/tag/v1.63.5)
* Updates standard-performance to [1.4.0](https://github.com/standardrb/standard-performance/releases/tag/v1.4.0)

## 1.35.1

* Corrects rubocop constraint to the patch version, not minor version.
Expand Down
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ PATH
standard (1.35.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.62.0)
rubocop (~> 1.63.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.3)
standard-performance (~> 1.4)

GEM
remote: https://rubygems.org/
Expand All @@ -30,7 +30,7 @@ GEM
rake (13.0.6)
regexp_parser (2.8.2)
rexml (3.2.6)
rubocop (1.62.1)
rubocop (1.63.5)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -43,9 +43,9 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-performance (1.20.1)
rubocop-performance (1.21.0)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
simplecov (0.22.0)
docile (~> 1.1)
Expand All @@ -56,9 +56,9 @@ GEM
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.3.0)
standard-performance (1.4.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.20.1)
rubocop-performance (~> 1.21.0)
unicode-display_width (2.5.0)

PLATFORMS
Expand Down
3 changes: 3 additions & 0 deletions config/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1303,6 +1303,9 @@ Style/MagicCommentFormat:
Style/MapCompactWithConditionalBlock:
Enabled: true

Style/MapIntoArray:
Enabled: false

Style/MapToHash:
Enabled: false

Expand Down
4 changes: 2 additions & 2 deletions standard.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_dependency "rubocop", "~> 1.62.0"
spec.add_dependency "rubocop", "~> 1.63.0"

spec.add_dependency "lint_roller", "~> 1.0"
spec.add_dependency "standard-custom", "~> 1.0.0"
spec.add_dependency "standard-performance", "~> 1.3"
spec.add_dependency "standard-performance", "~> 1.4"

# not semver: first three are lsp protocol version, last is patch
spec.add_dependency "language_server-protocol", "~> 3.17.0.2"
Expand Down

0 comments on commit b1c66d1

Please sign in to comment.