Remove extra clippy lints.

This commit is contained in:
Stephen Chung 2022-08-27 16:29:39 +08:00
parent bf5d6ab35a
commit 6bc98bd252

View File

@ -58,11 +58,11 @@
#![cfg_attr(feature = "no_std", no_std)] #![cfg_attr(feature = "no_std", no_std)]
#![deny(missing_docs)] #![deny(missing_docs)]
#![warn(clippy::all)] // #![warn(clippy::all)]
#![warn(clippy::pedantic)] // #![warn(clippy::pedantic)]
#![warn(clippy::nursery)] // #![warn(clippy::nursery)]
#![warn(clippy::cargo)] // #![warn(clippy::cargo)]
#![warn(clippy::undocumented_unsafe_blocks)] // #![warn(clippy::undocumented_unsafe_blocks)]
#![allow(clippy::unit_arg)] #![allow(clippy::unit_arg)]
#![allow(clippy::missing_errors_doc)] #![allow(clippy::missing_errors_doc)]
#![allow(clippy::used_underscore_binding)] #![allow(clippy::used_underscore_binding)]