You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if cond {
...}elseif cond1 {
bar
}elseif cond2 {
...}elseif cond3 {
...}else{
bar
}
This will trigger collapsible_if because of two equal bodies containing bar, but collapsing those ifs would be ugly and error prone, the code is idiomatic as it is.
The text was updated successfully, but these errors were encountered:
leoyvens
changed the title
collapsible_if shouln't warn on else after multiple else if
collapsible_if shouldn't warn on else after multiple else ifDec 23, 2016
Consider:
This will trigger
collapsible_if
because of two equal bodies containingbar
, but collapsing those ifs would be ugly and error prone, the code is idiomatic as it is.The text was updated successfully, but these errors were encountered: