Pattern: Missing indentation for multi-line assignment
Issue: -
This rule checks the indentation of the first line of the right-hand-side of a multi-line assignment.
# bad
value =
if foo
'bar'
end
# good
value =
if foo
'bar'
end
Attribute | Value |
---|---|
IndentationWidth |