From cc082efbfd5b86c0da53c36b0020dfdaced012e7 Mon Sep 17 00:00:00 2001 From: eri Date: Tue, 2 Apr 2024 14:50:45 +0200 Subject: clippy: Allow `too_many_arguments` for existing functions (#31974) * Allow `too_many_arguments` for existing functions * fix: Surround ASCII with code block in rustdoc --- components/devtools/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/devtools') diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 467bccddd1e..30e37f10fd4 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -10,7 +10,6 @@ #![crate_name = "devtools"] #![crate_type = "rlib"] #![allow(non_snake_case)] -#![allow(clippy::too_many_arguments)] #![deny(unsafe_code)] use std::borrow::ToOwned; @@ -420,6 +419,7 @@ fn run_server( } } + #[allow(clippy::too_many_arguments)] fn handle_network_event( actors: Arc>, mut connections: Vec, -- cgit v1.2.3