summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/gitIgnoreParser.ts
diff options
context:
space:
mode:
authorDeWitt Clinton <[email protected]>2025-06-12 07:09:38 -0700
committerGitHub <[email protected]>2025-06-12 07:09:38 -0700
commitf2ab6d08c4cd0ca9a5b3900a6bb66a083c0577ee (patch)
treedb2083848fc070f0de6ac4fe385f59e71a04fc46 /packages/core/src/utils/gitIgnoreParser.ts
parent9072a4e5ee5d6a8b524be40b0465b66e5d3dceba (diff)
Improve the performance of filename completion over large repositories. (#938)
Diffstat (limited to 'packages/core/src/utils/gitIgnoreParser.ts')
-rw-r--r--packages/core/src/utils/gitIgnoreParser.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/core/src/utils/gitIgnoreParser.ts b/packages/core/src/utils/gitIgnoreParser.ts
index ae1a7a01..d5d013a8 100644
--- a/packages/core/src/utils/gitIgnoreParser.ts
+++ b/packages/core/src/utils/gitIgnoreParser.ts
@@ -6,7 +6,7 @@
import * as fs from 'fs/promises';
import * as path from 'path';
-import ignore, { Ignore } from 'ignore';
+import ignore, { type Ignore } from 'ignore';
import { isGitRepository } from './gitUtils.js';
export interface GitIgnoreFilter {