mit-commit-message-lints 6.3.0

Check the correctness of a specific commit message. Designed to be used in tools providing commit-msg style hooks
Documentation
//! Mit commands
const CONFIG_KEY_EXPIRES: &str = "mit.author.expires";

pub(crate) mod get_authors;
#[cfg(test)]
mod get_authors_test;
pub(crate) mod get_commit_coauthor_configuration;
#[cfg(test)]
pub(crate) mod get_commit_coauthor_configuration_test;
pub(crate) mod set_commit_authors;
pub(crate) mod set_config_authors;

pub mod errors;
pub mod get_config_non_clean_behaviour;
#[cfg(test)]
mod set_commit_authors_test;
#[cfg(test)]
mod set_config_authors_test;
pub mod set_config_non_clean_behaviour;
mod vcs;