chore: Enable Clippy Pedantic lint (#19)

This commit is contained in:
Gerald Pinder 2024-01-27 14:03:16 -05:00 committed by GitHub
parent 097dbb391a
commit 331b91df35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 221 additions and 176 deletions

View file

@ -1,5 +1,11 @@
//! The root library for blue-build.
#![warn(clippy::correctness, clippy::suspicious, clippy::perf, clippy::style)]
#![warn(
clippy::correctness,
clippy::suspicious,
clippy::perf,
clippy::style,
clippy::pedantic
)]
#![doc(
html_logo_url = "https://gitlab.com/wunker-bunker/blue-build/-/raw/main/logos/BlueBuild-logo.png"
)]