Skip to content

Commit

Permalink
Temp disable freezing/mutable Rubocop checks
Browse files Browse the repository at this point in the history
Temp disable these two checks as they are flagging a _lot_ of
violations. I plan to fix them, but prefer to do so in a follow-on PR in
order to keep the diff of this PR small / focused on Ruby 3.1 changes.
  • Loading branch information
jeffwidman authored and mctofu committed Oct 7, 2022
1 parent 6dbec51 commit 2b7808f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,13 @@ Style/SpecialGlobalVars:
Enabled: false
Style/SelectByRegexp:
Enabled: false

# TODO these were temporarily disabled during the Ruby 2.7 -> 3.1 upgrade
# in order to keep the upgrade diff small, they will be enabled/fixed in
# a follow-on PR.
Naming/BlockForwarding:
Enabled: false
Style/MutableConstant:
Enabled: false
Style/RedundantFreeze:
Enabled: false

0 comments on commit 2b7808f

Please sign in to comment.