Pattern: Missing use of if
/unless
Issue: -
Checks for if
and unless
statements that would fit on one line if written as a modifier if
/unless
. The maximum line length is configurable.
# bad
if some_condition
do_something
end
# good
do_something if some_condition
Attribute | Value |
---|---|
MaxLineLength | 80 |