Default severity: warning
Detect repeated if-chain conditions.
Bad
if ready { one() } else if ready { two() }Good
if first { one() } else if second { two() }Detect repeated if-chain conditions.
Default severity: warning
Detect repeated if-chain conditions.
if ready { one() } else if ready { two() }if first { one() } else if second { two() }