feat(git): Refactor gitignore handling to use ignore library instead of minimatch (#864)

This commit is contained in:
N. Taylor Mullen
2025-06-08 18:32:19 -07:00
committed by GitHub
parent d061419452
commit 72fa01f62d
6 changed files with 65 additions and 238 deletions

View File

@@ -51,15 +51,6 @@ export class FileDiscoveryService {
});
}
/**
* Gets patterns that would be ignored for debugging/transparency
*/
getIgnoreInfo(): { gitIgnored: string[] } {
return {
gitIgnored: this.gitIgnoreFilter?.getIgnoredPatterns() || [],
};
}
/**
* Checks if a single file should be ignored
*/