refactor(core): improve ignore resolution and fix directory-matching bug (#23816)

This commit is contained in:
Emily Hedlund
2026-03-27 13:12:26 -04:00
committed by GitHub
parent f3977392e6
commit 29031ea7cf
9 changed files with 557 additions and 503 deletions

View File

@@ -178,7 +178,7 @@ async function readFullStructure(
const subFolderPath = path.join(currentPath, subFolderName);
const isIgnored =
options.fileService?.shouldIgnoreFile(
options.fileService?.shouldIgnoreDirectory(
subFolderPath,
filterFileOptions,
) ?? false;