mit-commit 3.3.1

For building commit linters. This makes it easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use mit_commit::CommitMessage;

#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
#[macro_use(quickcheck)]
extern crate quickcheck_macros;

#[allow(unused_must_use)]
#[quickcheck]
fn never_panic(input: String) -> bool {
    CommitMessage::from(input);
    true
}