Pattern: Malformed spacing around block body
Issue: -
This rule checks if empty lines around the bodies of blocks match the configuration.
# EnforcedStyle: empty_lines
# good
foo do |bar|
...
end
# EnforcedStyle: no_empty_lines
# good
foo do |bar|
...
end
Attribute | Value |
---|---|
EnforcedStyle | no_empty_lines |
SupportedStyles | empty_lines, no_empty_lines |