Pattern: Use of if
/unless
in multi-line body
Issue: -
Checks for uses of if
/unless
modifiers with multi-line bodies.
# bad
{
result: 'this should not happen'
} unless cond
# good
{ result: 'ok' } if cond
Pattern: Use of if
/unless
in multi-line body
Issue: -
Checks for uses of if
/unless
modifiers with multi-line bodies.
# bad
{
result: 'this should not happen'
} unless cond
# good
{ result: 'ok' } if cond