From 172eeae58d90c13706ffb3c78f69280f61b9282a Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Mon, 20 Apr 2026 15:36:43 +1000 Subject: [PATCH] Allow clippy::collapsible_match in examples (#884) --- crates/examples/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/examples/Cargo.toml b/crates/examples/Cargo.toml index 8df4554..fb6bcc5 100644 --- a/crates/examples/Cargo.toml +++ b/crates/examples/Cargo.toml @@ -58,6 +58,8 @@ name = "simple_write" required-features = ["write"] [lints.clippy] +# Style. +collapsible_match = "allow" nonminimal_bool = "allow" single_match = "allow" uninlined_format_args = "allow"