mit-commit-message-lints 6.4.1

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";
const CONFIG_KEY_ROTATION: &str = "mit.author.rotate";

pub(crate) mod get_authors;
pub(crate) mod get_commit_coauthor_configuration;
pub(crate) mod set_commit_authors;
pub(crate) mod set_config_authors;

pub mod errors;
pub mod get_config_non_clean_behaviour;

/// Configuration for rotating primary author across commits
///
/// When rotation is enabled, the primary author (user.name/user.email)
/// rotates among the configured authors with each commit.
pub mod get_config_rotation;
/// Rotate the primary author among configured authors
pub mod rotate_authors;
pub mod set_config_non_clean_behaviour;
/// Configuration for rotating primary author across commits
pub mod set_config_rotation;
mod vcs;