codeclimate/codeclimate-rubocop

View on GitHub
config/contents/layout/empty_lines_around_begin_body.md

Summary

Maintainability
Test Coverage
This cops checks if empty lines exist around the bodies of begin-end
blocks.

### Example:

    # good

    begin
      # ...
    end

    # bad

    begin

      # ...

    end