<div dir="ltr">Hi,<br><div>the new style in some cases doesn't look more readable than before, and some files grew a lot vertically due to huge amount of added newlines.</div><div>For example:<br></div>   Assert.equal(newPrincipalURI, originalPrincipalURI,<br>                         "content has the same principal");<br>now has to be written as:<br>    Assert.equal(<br>      newPrincipalURI,<br>      originalPrincipalURI,<br>      "content has the same principal"<br>    );<br><div><br></div><div>Multi-condition ifs:</div><div>if (cond1 &&</div><div>    cond2 &&</div><div>    cond3) {<br></div><div>now are<br></div>if (<br>  cond1 &&<br><div>  cond2 &&</div><div>  cond3<br></div>) {<br><br>Also assignments<br>    let revHost = host.split("")<br>                                .reverse()<br>                                .join("") + ".";<br>now are<br>    let revHost =<br>      host<br>        .split("")<br>        .reverse()<br>        .join("") + ".";<br><br><div>Are all of these expected, or are there parts that should land yet?</div><div><br></div><div>Cheers,</div><div>Marco</div><br></div>