aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/index
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-11-21 20:50:42 -0500
committerJP Appel <jeanpierre.appel01@gmail.com>2025-11-21 20:50:42 -0500
commit1aad60b49a32b6bced95a251f266799c031ca83e (patch)
tree4b156c7f6df11a164a31a5615d30f9cd6f07c44f /pkg/index
parent7383ea149c9444c297e21f21294fd41e67f9c9ff (diff)
Update documentation, comments, and tidy codebase
Diffstat (limited to 'pkg/index')
-rw-r--r--pkg/index/filters.go2
1 files changed, 0 insertions, 2 deletions
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