mit_commit_message_lints/lib.rs
1//! Standard ways to interact with different parts of the tool
2
3#![warn(
4 rust_2018_idioms,
5 unused,
6 rust_2021_compatibility,
7 nonstandard_style,
8 future_incompatible,
9 missing_copy_implementations,
10 missing_debug_implementations,
11 missing_docs
12)]
13
14pub mod console;
15pub mod external;
16pub mod lints;
17pub mod mit;
18
19pub mod relates;
20pub mod scope;