Merging collapsible if statements increases the code's readability.
if
if (condition1) { if (condition2) { // NonCompliant ... } }
if (condition1 && condition2) { ... }