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
//! Post-issue-creation processor that replaces TODO markers with issue links.
//!
//! After GitHub issues are created, [`Processor::replace_todos`] rewrites source
//! files to replace each TODO marker with `GH_ISSUE: <issue_url> : <description>`,
//! preserving the original description text. Uses atomic file writes.

pub mod error;
mod types;

pub use types::{Processor, ProcessorResult};