Enable a few more stylistic eslint options for my extensions

This commit is contained in:
Matt Bierner
2025-08-14 10:42:20 -07:00
parent 9604d612e5
commit 73e6d6a0a2
16 changed files with 40 additions and 26 deletions

View File

@@ -57,7 +57,7 @@ class TscTaskProvider extends Disposable implements vscode.TaskProvider {
return [];
}
const configPaths: Set<string> = new Set();
const configPaths = new Set<string>();
const tasks: vscode.Task[] = [];
for (const project of await this.getAllTsConfigs(token)) {
if (!configPaths.has(project.fsPath)) {