Skip to content

Commit f414ed7

Browse files
omonienclaude
andcommitted
perf: Add Delphi-specific exclude patterns to defaults
Add _libs/**, libs/**, __history/**, __recovery/**, and *.dcu to default exclude list. Delphi projects store external dependencies in _libs/ or libs/ (often as Git submodules) and these should not be indexed — same as node_modules for JS projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f5d9a0e commit f414ed7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,8 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
536536
'**/node_modules/**',
537537
'**/vendor/**',
538538
'**/Pods/**',
539+
'**/_libs/**',
540+
'**/libs/**',
539541

540542
// Generic build outputs
541543
'**/dist/**',
@@ -630,6 +632,11 @@ export const DEFAULT_CONFIG: CodeGraphConfig = {
630632
'**/Carthage/Build/**',
631633
'**/SourcePackages/**',
632634

635+
// Delphi/Pascal
636+
'**/__history/**',
637+
'**/__recovery/**',
638+
'**/*.dcu',
639+
633640
// PHP
634641
'**/.composer/**',
635642
'**/storage/framework/**',

0 commit comments

Comments
 (0)