gitru 0.2.11

a lightweight, configurable Git commit message validation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Forbid unwrap in production code
#![deny(clippy::unwrap_used)]
#![deny(clippy::expect_used)]
// Allow unwrap in all tests (including integration tests)
#![cfg_attr(test, allow(clippy::unwrap_used))]
#![cfg_attr(test, allow(clippy::expect_used))]

pub mod cli;
pub mod config;
pub mod constant;
pub mod error;
pub mod hook;
pub mod parser;
pub mod util;
pub mod validator;