towl 0.3.7

A fast CLI tool to scan codebases for TODO comments and output them in multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Directory traversal and concurrent file scanning for TODO comments.
//!
//! The [`Scanner`] walks a directory tree using gitignore-aware traversal,
//! filters files by extension, and scans matching files concurrently with
//! bounded parallelism. Resource limits prevent excessive memory use on
//! large codebases.

pub mod error;
mod limits;
mod types;
mod walker;

pub use limits::ScanResult;
pub use types::Scanner;