codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/empty_lines_around_block_body.md

Summary

Maintainability
Test Coverage
This cops checks if empty lines around the bodies of blocks match
the configuration.

### Example:

    # EnforcedStyle: empty_lines

    # good

    foo do |bar|

      ...

    end

    # EnforcedStyle: no_empty_lines

    # good

    foo do |bar|
      ...
    end