Skip to main content

gobby_code/index/
walker.rs

1//! Git-aware file discovery using the `ignore` crate.
2//! Respects .gitignore and exclude patterns.
3
4mod classification;
5mod discovery;
6mod generated;
7mod hidden;
8mod types;
9
10pub use classification::{
11    classify_explicit_file_with_options, classify_file, content_language, is_content_indexable,
12};
13pub use discovery::{discover_files, discover_files_with_options};
14pub use types::{DiscoveryOptions, FileClassification};
15
16#[cfg(test)]
17mod tests;