Cop idea: prefer argument forwarding syntax · Issue #7549 · rubocop/rubocop

Is your feature request related to a problem? Please describe. Since Ruby 2.7, we will be able to use ... to forward arguments to another method. # 2.6 def foo(*args, &block) bar(*args, &block) end...