clippy: Allow too_many_arguments for existing functions (#31974)

* Allow `too_many_arguments` for existing functions

* fix: Surround ASCII with code block in rustdoc
This commit is contained in:
eri 2024-04-02 14:50:45 +02:00 committed by GitHub
parent f613159cba
commit cc082efbfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 86 additions and 64 deletions

View file

@ -2,8 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#![allow(clippy::too_many_arguments)]
use std::borrow::Cow;
use std::collections::{HashMap, HashSet};
use std::rc::Rc;
@ -349,6 +347,7 @@ impl Pipeline {
}
/// Creates a new `Pipeline`, after the script has been spawned.
#[allow(clippy::too_many_arguments)]
pub fn new(
id: PipelineId,
browsing_context_id: BrowsingContextId,