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
//! Regex-based parser for extracting TODO comments from source file content.
//!
//! Compiles comment-prefix and TODO-keyword patterns from [`crate::config::ParsingConfig`]
//! into a reusable [`Parser`](types::Parser) that produces [`TodoComment`](crate::comment::todo::TodoComment) values.

mod context;
pub mod error;
mod pattern;
mod types;

pub(crate) use types::*;