Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 2434d91

Browse files
committed
Don't include vscode-tslint name in error message
Fixes microsoft/vscode#64100
1 parent c780f26 commit 2434d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runner/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,5 +441,5 @@ function getConfigurationFailureMessage(err: any): string {
441441
if (typeof err.message === 'string' || err.message instanceof String) {
442442
errorMessage = err.message;
443443
}
444-
return `vscode-tslint: Cannot read tslint configuration - '${errorMessage}'`;
444+
return `Cannot read tslint configuration - '${errorMessage}'`;
445445
}

0 commit comments

Comments
 (0)