From 7bd974b3a4db2c3ab321de2976d09d3ea2b82348 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 24 Sep 2024 11:26:26 -0700 Subject: [PATCH] Ignore needless_arbitrary_self_type clippy lint in generated code --- src/expand.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/expand.rs b/src/expand.rs index 1eb27a2..5adba58 100644 --- a/src/expand.rs +++ b/src/expand.rs @@ -129,6 +129,7 @@ fn lint_suppress_with_body() -> Attribute { clippy::async_yields_async, clippy::diverging_sub_expression, clippy::let_unit_value, + clippy::needless_arbitrary_self_type, clippy::no_effect_underscore_binding, clippy::shadow_same, clippy::type_complexity,