Pattern: Malformed space before block brace
Issue: -
Checks that block braces have or don't have a space before the opening brace depending on configuration.
# bad
foo.map{ |a|
a.bar.to_s
}
# good
foo.map { |a|
a.bar.to_s
}
Attribute | Value |
---|---|
EnforcedStyle | space |
SupportedStyles | space, no_space |
SupportedStylesForEmptyBraces | space, no_space |