From 5920ad78678ddcbe41f4c681ca6e70e7da3e884d Mon Sep 17 00:00:00 2001 From: tupe12334 Date: Sun, 21 Jun 2026 18:08:53 +0300 Subject: [PATCH] chore(lint): enable clippy::unnested_or_patterns Promote clippy::unnested_or_patterns to deny in core/Cargo.toml, continuing the repo's incremental clippy ratchet. The codebase has zero violations, so this is a clean no-fix guard. Closes #167 Co-Authored-By: Claude Opus 4.8 (1M context) --- core/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Cargo.toml b/core/Cargo.toml index 6d801c0..51f6d88 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -78,6 +78,7 @@ expect_used = "deny" too_many_lines = "deny" unwrap_used = "deny" wildcard_imports = "deny" +unnested_or_patterns = "deny" [dependencies] cel-interpreter = "0.10"