Skip to content

Commit

Permalink
update RuboCop 1.64.1 (#107, rggen/rggen#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
taichi-ishitani authored Jan 11, 2025
1 parent 0b3fa2a commit d4a8e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ plugins:
enabled: true
rubocop:
enabled: true
channel: rubocop-1-56-3
channel: beta
exclude_patterns:
- "spec/"
2 changes: 1 addition & 1 deletion lib/rggen/systemverilog/common/utility/data_object.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def serialized?
end

def serialized_array_size
size = [(width || 1), *array_size]
size = [width || 1, *array_size]
if size.all? { |s| s.is_a?(Integer) }
[size.inject(&:*)]
else
Expand Down

0 comments on commit d4a8e6d

Please sign in to comment.