mit_commit_message_lints/
lib.rs

1//! Standard ways to interact with different parts of the tool
2
3#![warn(clippy::nursery)]
4#![deny(
5    unused,
6    nonstandard_style,
7    future_incompatible,
8    missing_copy_implementations,
9    missing_debug_implementations,
10    missing_docs,
11    clippy::cargo,
12    clippy::complexity,
13    clippy::correctness,
14    clippy::perf,
15    clippy::style,
16    clippy::suspicious,
17    clippy::pedantic,
18    non_fmt_panics
19)]
20#![allow(clippy::multiple_crate_versions)]
21
22pub mod console;
23pub mod external;
24pub mod lints;
25pub mod mit;
26
27pub mod relates;
28pub mod scope;