Pattern: Use of block comment
Issue: -
This rule looks for uses of block comments (=begin...=end
). They cannot be preceded by whitespace and are not as easy to spot as regular comments.
# bad
=begin
comment line
another comment line
=end
# good
# comment line
# another comment line