We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06eddfe commit 4fceee8Copy full SHA for 4fceee8
server/src/utils.ts
@@ -603,9 +603,9 @@ export let parseCompilerLogOutput = (
603
// 10 ┆
604
} else if (line.startsWith(" ")) {
605
// part of the actual diagnostics message
606
- parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
607
- line.slice(2)
608
- );
+ parsedDiagnostics[parsedDiagnostics.length - 1].content.push(
+ line.slice(2)
+ );
609
} else if (line.trim() != "") {
610
// We'll assume that everything else is also part of the diagnostics too.
611
// Most of these should have been indented 2 spaces; sadly, some of them
0 commit comments