There was an error while loading. Please reload this page.
1 parent 5b115df commit 3af4277Copy full SHA for 3af4277
src/client/linters/baseLinter.ts
@@ -145,6 +145,9 @@ export abstract class BaseLinter {
145
}
146
147
else {
148
+ if (typeof error === 'string' && (error as string).indexOf("OSError: [Errno 2] No such file or directory: '/") > 0) {
149
+ return;
150
+ }
151
vscode.window.showErrorMessage(`There was an error in running the linter '${this.Id}'`, 'Disable linter', 'View Errors').then(item => {
152
switch (item) {
153
case 'Disable linter': {
0 commit comments