New cop to suggest replacing case/when with hash lookup · Issue #8247 · rubocop/rubocop

When case/when represents a simple 1:1 mapping, suggest to replace it with a hash lookup. # bad case country when "europe" "http://eu.example.com" when "america" "http://us.example.com" end # good ...