1
Fork 0

Move the global lints to Cargo.toml.

This commit is contained in:
Bauke 2024-01-16 12:06:18 +01:00
parent 7a708fb76d
commit 8d419d4799
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 7 additions and 3 deletions

View File

@ -20,3 +20,10 @@ regex = "1.10.2"
[dependencies.clap]
features = ["derive"]
version = "4.4.7"
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"

View File

@ -2,9 +2,6 @@
//!
//! > **Bauke's Ad-hoc Utilities.**
#![forbid(unsafe_code)]
#![warn(missing_docs, clippy::missing_docs_in_private_items)]
mod cli;
mod logging;