Skip to content

Commit 78fbd51

Browse files
committed
Bundle with Rubocop 0.80.1
1 parent 97ddb57 commit 78fbd51

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.rubocop.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,6 @@ Style/Alias:
197197
Style/BlockDelimiters:
198198
Enabled: false
199199

200-
Style/BracesAroundHashParameters:
201-
Enabled: false
202-
203200
# "Avoid the use of the case equality operator ==="
204201
# We prefer using `Class#===` over `Object#is_a?` because `Class#===`
205202
# is less likely to be monkey patched than `is_a?` on a user object.
@@ -256,6 +253,15 @@ Style/GlobalVars:
256253
Style/GuardClause:
257254
Enabled: false
258255

256+
Style/HashEachMethods:
257+
Enabled: true
258+
259+
Style/HashTransformKeys:
260+
Enabled: true
261+
262+
Style/HashTransformValues:
263+
Enabled: true
264+
259265
Style/IdenticalConditionalBranches:
260266
Enabled: false
261267

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ end
5757

5858
gem "rubyzip", '~> 1.2'
5959

60-
gem 'rubocop', '~> 0.79.0'
60+
gem 'rubocop', '~> 0.80.1'
6161

6262
custom_gemfile = File.expand_path('Gemfile-custom', __dir__)
6363
eval_gemfile custom_gemfile if File.exist?(custom_gemfile)

0 commit comments

Comments
 (0)