From 0e53cbd1c50347b1d4721a20729c35d1c887bd9d Mon Sep 17 00:00:00 2001 From: Emelie Graven Date: Tue, 29 Oct 2024 09:27:01 +0100 Subject: [PATCH] chore: Allow all clippy lints This is a temporary measure until we can spend some time and resources improving the crate quality. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a7459d2..7f9b8f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,8 @@ unused_import_braces = "allow" unused_qualifications = "allow" [lints.clippy] +# TODO: Disable +all = "allow" tabs_in_doc_comments = "allow" branches_sharing_code = "allow" cast_lossless = "allow"