Pattern: Redundant parentheses
Issue: -
This rule checks for redundant parentheses.
# bad
(x) if ((y.z).nil?)
# good
x if y.z.nil?
Pattern: Redundant parentheses
Issue: -
This rule checks for redundant parentheses.
# bad
(x) if ((y.z).nil?)
# good
x if y.z.nil?