28 stable releases (3 major)

3.2.7 Sep 27, 2023
3.2.3 Jan 30, 2023
3.2.2 Oct 29, 2022
3.1.0 Jul 25, 2022
0.2.0 Sep 25, 2021

#1974 in Development tools

Download history 186/week @ 2023-12-17 236/week @ 2023-12-24 265/week @ 2023-12-31 86/week @ 2024-01-07 77/week @ 2024-01-14 346/week @ 2024-01-21 66/week @ 2024-01-28 122/week @ 2024-02-04 1233/week @ 2024-02-11 82/week @ 2024-02-18 66/week @ 2024-02-25 72/week @ 2024-03-03 62/week @ 2024-03-10 109/week @ 2024-03-17 65/week @ 2024-03-24 579/week @ 2024-03-31

823 downloads per month
Used in 8 crates (3 directly)

CC0 license

205KB
5.5K SLoC

mit-lint

Lint commit messages

Example

use mit_commit::CommitMessage;
use mit_lint::{Code, lint, Problem, Lints, Lint};

let message:String = "x".repeat(73).into();
let expected = vec![Problem::new(
    "Your subject is longer than 72 characters".into(),
    "It's important to keep the subject of the commit less than 72 characters because when you look at the git log, that's where it truncates the message. This means that people won't get the entirety of the information in your commit.\n\nPlease keep the subject line 72 characters or under"
        .into(),
    Code::SubjectLongerThan72Characters,&message.clone().into(),Some(vec![(String::from("Too long"), 72, 1)]),
    Some("https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project#_commit_guidelines".parse().unwrap()),
)];
let actual = lint(&CommitMessage::from(message), Lints::new(vec![Lint::SubjectLongerThan72Characters].into_iter().collect()));
assert_eq!(
    actual, expected,
    "Expected {:?}, found {:?}",
    expected, actual
);

Docs

Read more at Docs.rs

Dependencies

~7–11MB
~199K SLoC