mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 01:07:46 +00:00
centralize file filtering in FileDiscoveryService (#1039)
This commit is contained in:
@@ -69,7 +69,7 @@ export async function bfsFileSearch(
|
||||
|
||||
for (const entry of entries) {
|
||||
const fullPath = path.join(currentDir, entry.name);
|
||||
if (fileService?.shouldIgnoreFile(fullPath)) {
|
||||
if (fileService?.shouldGitIgnoreFile(fullPath)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user