Rubocop 0.80 updates to rubocop configs

Arbitrary annoying name changes to cops and new cops that I don't think
we would care about:
https://rubocop.readthedocs.io/en/latest/cops_style/#stylehasheachmethods
https://rubocop.readthedocs.io/en/latest/cops_style/#stylehashtransformkeys
https://rubocop.readthedocs.io/en/latest/cops_style/#stylehashtransformvalues
This commit is contained in:
Brandon High 2020-03-04 12:06:54 -08:00
parent cec7183fdc
commit 9201a0befb
No known key found for this signature in database
GPG key ID: 270079C784FCAFDE
2 changed files with 15 additions and 24 deletions

View file

@ -17,7 +17,7 @@ Style/Documentation:
Enabled: false
# Line length is not useful
Metrics/LineLength:
Layout/LineLength:
Enabled: false
# Empty method definitions over more than one line is ok
@ -69,3 +69,14 @@ Style/GuardClause:
Layout/EndOfLine:
EnforcedStyle: lf
# Added in 0.80, don't really care about the change
Style/HashEachMethods:
Enabled: false
# Added in 0.80, don't really care about the change
Style/HashTransformKeys:
Enabled: false
# Added in 0.80, don't really care about the change
Style/HashTransformValues:
Enabled: false