codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cops checks for two or more consecutive blank lines.

### Example:

    # bad - It has two empty lines.
    some_method
    # one empty line
    # two empty lines
    some_method

    # good
    some_method
    # one empty line
    some_method