towl 0.3.7

A fast CLI tool to scan codebases for TODO comments and output them in multiple formats
Documentation
//! Configuration loading, validation, and initialisation.
//!
//! Configuration is read from a `.towl.toml` file (see [`DEFAULT_CONFIG_PATH`]) and
//! can be overridden by environment variables (`TOWL_GITHUB_TOKEN`, `TOWL_GITHUB_OWNER`,
//! `TOWL_GITHUB_REPO`).

pub(crate) mod defaults;
mod display;
pub mod error;
pub mod git;
mod newtypes;
mod types;
mod validation;

pub use newtypes::{Owner, Repo};
pub use types::{GitHubConfig, LlmConfig, ParsingConfig, TowlConfig, DEFAULT_CONFIG_PATH};

#[cfg(test)]
pub use types::test_parsing_config;