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 8645247 commit db5d8afCopy full SHA for db5d8af
src/lsptoolshost/buildDiagnosticsService.ts
@@ -134,8 +134,7 @@ export class BuildDiagnosticsService {
134
}
135
136
private static isCompilerDiagnostic(d: vscode.Diagnostic): boolean {
137
- // eslint-disable-next-line prettier/prettier
138
- const regex = "[cC][sS][0-9]{4}";
+ const regex = '[cC][sS][0-9]{4}';
139
return d.code ? d.code.toString().match(regex) !== null : false;
140
141
0 commit comments