Skip to content

Commit 5e83a19

Browse files
committed
Added "source" string to diagnostics output so errors and warnings are displayed with "pyright" in VS Code.
1 parent 396b688 commit 5e83a19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/server.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ function _convertDiagnostics(diags: AnalyzerDiagnostic[]): Diagnostic[] {
149149
let severity = diag.category === DiagnosticCategory.Error ?
150150
DiagnosticSeverity.Error : DiagnosticSeverity.Warning;
151151

152-
return Diagnostic.create(_convertRange(diag.range), diag.message, severity);
152+
return Diagnostic.create(_convertRange(diag.range), diag.message, severity,
153+
undefined, 'pyright');
153154
});
154155
}
155156

0 commit comments

Comments
 (0)