From aa1893918bb4e94d58080f614d7ca1f50a9ba9a2 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sat, 23 May 2020 22:52:00 +0200 Subject: [PATCH] src/diagnostics.ts: Add column number to messages --- src/diagnostics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diagnostics.ts b/src/diagnostics.ts index 5c9c9cd49..22c9e7d8c 100644 --- a/src/diagnostics.ts +++ b/src/diagnostics.ts @@ -55,7 +55,7 @@ export class DiagnosticPrinter { } } out += '\n' - out += chalk.bold.yellow(`${span.file.origPath}:${span.start.line}: `); + out += chalk.bold.yellow(`${span.file.origPath}:${span.start.line}:${span.start.column}: `); } switch (diagnostic.severity) { case 'error':