aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_module.rs
diff options
context:
space:
mode:
authorkomuhangi <51232461+jahielkomu@users.noreply.github.com>2024-04-01 17:53:33 +0300
committerGitHub <noreply@github.com>2024-04-01 14:53:33 +0000
commit0da2508e4d643e7a47ec3b83f9e97b06a3eb3bad (patch)
tree29f4ddf4b622c42d15121c47e2df5ae0b0884bae /components/script/script_module.rs
parent8c1a72f13052ece57fcff4e424dbab58afa9b37e (diff)
downloadservo-0da2508e4d643e7a47ec3b83f9e97b06a3eb3bad.tar.gz
servo-0da2508e4d643e7a47ec3b83f9e97b06a3eb3bad.zip
clippy: Allow `too_many_arguments` for all functions (#31962)
This is the start of preventing this in the future. Co-authored-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/script/script_module.rs')
-rw-r--r--components/script/script_module.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/script_module.rs b/components/script/script_module.rs
index 062a0b5ec99..0a220e7c8bb 100644
--- a/components/script/script_module.rs
+++ b/components/script/script_module.rs
@@ -1545,6 +1545,7 @@ struct DynamicModule {
}
/// <https://html.spec.whatwg.org/multipage/#fetch-a-single-module-script>
+#[allow(clippy::too_many_arguments)]
fn fetch_single_module_script(
owner: ModuleOwner,
url: ServoUrl,