Pattern: Use of nested modifier
Issue: -
This rule checks for nested use of if
, unless
, while
and until
in their modifier form. Use &&
/||
if appropriate.
# bad
something if a if b
# good
something if b && a
Pattern: Use of nested modifier
Issue: -
This rule checks for nested use of if
, unless
, while
and until
in their modifier form. Use &&
/||
if appropriate.
# bad
something if a if b
# good
something if b && a