codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cops checks if empty lines exist around the bodies of methods.

### Example:

    # good

    def foo
      # ...
    end

    # bad

    def bar

      # ...

    end