From a4ef3dec4fbaa6fbe46565a4e9bf75192ec9378e Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Fri, 13 Dec 2024 12:01:21 -0800 Subject: [PATCH] turn off clippy warnings for todos, for now --- .cargo/config.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 824a63b..a0431bc 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,5 +1,3 @@ -# add the below section to `.cargo/config.toml` - [target.'cfg(all())'] rustflags = [ # BEGIN - Embark standard lints v6 for Rust 1.55+ @@ -65,7 +63,7 @@ rustflags = [ "-Wclippy::string_add", "-Wclippy::string_lit_as_bytes", "-Wclippy::string_to_string", - "-Wclippy::todo", + # "-Wclippy::todo", // todo!("handle these in subsequent PRs") "-Wclippy::trait_duplication_in_bounds", "-Wclippy::unimplemented", "-Wclippy::unnested_or_patterns",