From 26c4c9745f449f4776f7cb281973976477159c8e Mon Sep 17 00:00:00 2001 From: Fangdun Tsai Date: Sun, 26 May 2024 21:55:00 +0800 Subject: [PATCH] chore: ci --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ccf6d12b..7b36e306 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -149,10 +149,11 @@ missing_debug_implementations = "warn" missing_docs = "warn" [workspace.lints.clippy] -all = "deny" -pedantic = "deny" +all = "warn" +pedantic = "warn" missing_errors_doc = "warn" needless_pass_by_value = "warn" module_name_repetitions = { level = "allow", priority = 1 } too_many_lines = { level = "allow", priority = 1 } type_complexity = { level = "allow", priority = 1 } +lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12270