mit-commit-message-lints 5.12.207

Check the correctness of a specific commit message. Designed to be used in tools providing commit-msg style hooks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Default interactions for git-mit relates-to logic

pub use cmd::errors::Error as VcsError;

mod cmd;
mod lib;

pub use self::{
    cmd::{
        get_relate_to_configuration::get_relate_to_configuration,
        set_relates_to::set_relates_to,
    },
    lib::relates_to::RelateTo,
};