From 97fc99354a054d855af919507374de2578351487 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Sun, 3 Dec 2023 13:13:57 +0100 Subject: [PATCH] add warning lint for usage of todo!() --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 8e38026..d2db694 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -101,6 +101,7 @@ This crate uses Semantic Versioning 2.0.0 as its versioning scheme. You can read clippy::new_without_default, clippy::useless_conversion )] +#![warn(clippy::todo, clippy::unimplemented)] #[cfg(all(feature = "rt", feature = "rt_multi_thread"))] compile_error!("feature \"rt\" and feature \"rt_multi_thread\" cannot be enabled at the same time");