codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop looks for uses of block comments (=begin...=end).

### Example:
    # bad
    =begin
    Multiple lines
    of comments...
    =end

    # good
    # Multiple lines
    # of comments...