Skip to content

Commit db5d8af

Browse files
author
Becca McHenry
committed
remove eslint ignore
1 parent 8645247 commit db5d8af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lsptoolshost/buildDiagnosticsService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ export class BuildDiagnosticsService {
134134
}
135135

136136
private static isCompilerDiagnostic(d: vscode.Diagnostic): boolean {
137-
// eslint-disable-next-line prettier/prettier
138-
const regex = "[cC][sS][0-9]{4}";
137+
const regex = '[cC][sS][0-9]{4}';
139138
return d.code ? d.code.toString().match(regex) !== null : false;
140139
}
141140

0 commit comments

Comments
 (0)