Base+LibJS+LibWeb: Make prettier clean

Also use "// prettier-ignore" comments where necessary rather than
excluding whole files (via .prettierignore).
This commit is contained in:
Linus Groh 2020-12-26 16:24:24 +01:00 committed by Andreas Kling
commit 5122f98198
Notes: sideshowbarker 2024-07-19 00:33:17 +09:00
24 changed files with 100 additions and 79 deletions

View file

@ -10,8 +10,9 @@ test("Toplevel break inside loop", () => {
test("break inside sub-blocks", () => {
var j = 0;
for (var i = 0; i < 9; ++i) {
if (j == 4)
if (j == 4) {
break;
}
++j;
}
expect(j).toBe(4);