## Is your feature request related to a problem? Please describe. It would be cool if cases like the following were auto-corrected. ```sh $ cat examples.rb ``` ```ruby case 1 + 1 when 2 begin puts 'hello' puts 'goodbye' end end if 1 + 1 == 2 begin puts 'hello' puts 'goodbye' end end ``` ```sh $ rubocop --only Style/RedundantBegin -a examples.rb Inspecting 1 file . 1 file inspected, no offenses detected ``` I couldn't think of a case where auto-correcting such a case would cause issues - or am I missing something? ## Additional context I'm interested in this because I have code in the `regexp_parser` gem that is generated by ragel, and ragel generates lots of these cases.