From 7f8771a362683ac6bfdb0a2757c74b352ea28b47 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Fri, 3 May 2024 22:24:54 +0200 Subject: [PATCH] Web: fix Clippy v1.78 FPs (#3678) --- src/platform_impl/web/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform_impl/web/mod.rs b/src/platform_impl/web/mod.rs index df1da5aa..7b896b4c 100644 --- a/src/platform_impl/web/mod.rs +++ b/src/platform_impl/web/mod.rs @@ -17,8 +17,8 @@ // incoming events (from the registered handlers) and ensuring they are passed to the user in a // compliant way. -// TODO: FP, remove when is fixed. -#![allow(unknown_lints, non_local_definitions)] +// TODO: FP, remove when is fixed. +#![allow(clippy::empty_docs)] mod r#async; mod cursor;