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
use thiserror::Error;

/// Errors produced when parsing comment text into a [`super::todo::TodoType`].
#[derive(Error, Debug)]
pub enum TowlCommentError {
    #[error("Cannot recognise {comment} as a valid TODO type")]
    UnknownTodoType { comment: String },
}