Skip to content

Commit 10a5b8d

Browse files
committed
code formatting
1 parent 37e7b71 commit 10a5b8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/src/utils.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ export let parseCompilerLogOutput = (
589589
code: undefined,
590590
severity: t.DiagnosticSeverity.Error,
591591
tag: undefined,
592-
content: [lines[i], lines[i+1]],
592+
content: [lines[i], lines[i + 1]],
593593
});
594594
i++;
595595
} else if (/^ +([0-9]+| +|\.) (|)/.test(line)) {
@@ -603,9 +603,9 @@ export let parseCompilerLogOutput = (
603603
// 10 ┆
604604
} else if (line.startsWith(" ")) {
605605
// part of the actual diagnostics message
606-
parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
607-
line.slice(2)
608-
);
606+
parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
607+
line.slice(2)
608+
);
609609
} else if (line.trim() != "") {
610610
// We'll assume that everything else is also part of the diagnostics too.
611611
// Most of these should have been indented 2 spaces; sadly, some of them

0 commit comments

Comments
 (0)