From 1aad60b49a32b6bced95a251f266799c031ca83e Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 21 Nov 2025 20:50:42 -0500 Subject: Update documentation, comments, and tidy codebase --- pkg/index/filters.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg/index/filters.go') diff --git a/pkg/index/filters.go b/pkg/index/filters.go index 3deee6d..083b4af 100644 --- a/pkg/index/filters.go +++ b/pkg/index/filters.go @@ -48,10 +48,8 @@ func ParseFilter(s string) (DocFilter, error) { } return NewMaxFilesizeFilter(size), nil case "ExcludeName", "ExcludeFilename": - // TODO: support escaped commas return NewExcludeFilenameFilter(strings.Split(param, ",")), nil case "IncludeName", "IncludeFilename": - // TODO: support escaped commas return NewIncludeFilenameFilter(strings.Split(param, ",")), nil case "ExcludeParent": return NewExcludeParentFilter(param), nil -- cgit v1.2.3