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>
This commit is contained in:
komuhangi 2024-04-01 17:53:33 +03:00 committed by GitHub
parent 8c1a72f130
commit 0da2508e4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 51 additions and 0 deletions

View file

@ -40,6 +40,7 @@ pub struct AudioParam {
}
impl AudioParam {
#[allow(clippy::too_many_arguments)]
pub fn new_inherited(
context: &BaseAudioContext,
node: NodeId,
@ -64,6 +65,7 @@ impl AudioParam {
}
#[allow(crown::unrooted_must_root)]
#[allow(clippy::too_many_arguments)]
pub fn new(
window: &Window,
context: &BaseAudioContext,