Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to RuboCop 1.25 #155

Merged
merged 1 commit into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions config/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2496,6 +2496,7 @@ Naming/BlockForwarding:
SupportedStyles:
- anonymous
- explicit
BlockForwardingName: block

Naming/BlockParameterName:
Description: >-
Expand Down Expand Up @@ -3698,6 +3699,8 @@ Style/HashSyntax:
- always
# forces use of explicit hash literal value.
- never
# accepts both shorthand and explicit use of hash literal value.
- either
# Force hashes that have a symbol value to use hash rockets
UseHashRocketsWithSymbolValues: false
# Do not suggest { a?: 1 } over { :a? => 1 } in ruby19 style
Expand Down
2 changes: 1 addition & 1 deletion lib/chefstyle/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Chefstyle
VERSION = "2.2.0"
RUBOCOP_VERSION = "1.24.1"
RUBOCOP_VERSION = "1.25.0"
end