From ec6d464c03194dfc680fbfe971c4b864a9b486b8 Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Thu, 5 Sep 2024 20:03:13 -0700 Subject: [PATCH] Lint: Allow `clippy::duplicated_attributes`. This lint will be problematic as we start using lint reasons more, until it is fixed to not misinterpret them. --- Cargo.toml | 1 + all-is-cubes-wasm/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 12f1dd3dc..b8a6f8860 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -168,6 +168,7 @@ unused_qualifications = "warn" # clippy default lints that are set to allow collapsible_else_if = "allow" collapsible_if = "allow" +duplicated_attributes = "allow" # false positive prone match_ref_pats = "allow" needless_update = "allow" single_match = "allow" diff --git a/all-is-cubes-wasm/Cargo.toml b/all-is-cubes-wasm/Cargo.toml index 4d03aa96e..af10133c6 100644 --- a/all-is-cubes-wasm/Cargo.toml +++ b/all-is-cubes-wasm/Cargo.toml @@ -106,6 +106,7 @@ unused_qualifications = "warn" # clippy default lints that are set to allow collapsible_else_if = "allow" collapsible_if = "allow" +duplicated_attributes = "allow" # false positive prone match_ref_pats = "allow" needless_update = "allow" single_match = "allow"