Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Update rubocop requirement from ~> 1.56.4 to ~> 1.58.0 (#197)
Browse files Browse the repository at this point in the history
* Update rubocop requirement from ~> 1.56.4 to ~> 1.58.0

Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.56.4...v1.58.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Suppress `Style/SingleLineDoEndBlock` in tests

rubocop/rubocop#12227

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenichi Kamiya <kachick1@gmail.com>
  • Loading branch information
dependabot[bot] and kachick committed Dec 4, 2023
1 parent 8437924 commit df0bd37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ Style/MethodDefParentheses:
Style/TrailingCommaInBlockArgs:
Enabled: true

Style/SingleLineDoEndBlock:
Enabled: true
Exclude:
- 'test/**/*'

Style/StringLiterals:
Enabled: true
EnforcedStyle: 'single_quotes'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ end

group :development do
gem 'yard', '~> 0.9.34', require: false
gem 'rubocop', '~> 1.56.4', require: false
gem 'rubocop', '~> 1.58.0', require: false
end

group :test do
Expand Down

0 comments on commit df0bd37

Please sign in to comment.