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

@ -351,6 +351,7 @@ impl CanvasState {
// is copied on the rectangle (dx, dy, dh, dw) of the destination canvas
//
// https://html.spec.whatwg.org/multipage/#dom-context-2d-drawimage
#[allow(clippy::too_many_arguments)]
fn draw_image_internal(
&self,
htmlcanvas: Option<&HTMLCanvasElement>,
@ -425,6 +426,7 @@ impl CanvasState {
result
}
#[allow(clippy::too_many_arguments)]
fn draw_offscreen_canvas(
&self,
canvas: &OffscreenCanvas,
@ -479,6 +481,7 @@ impl CanvasState {
Ok(())
}
#[allow(clippy::too_many_arguments)]
fn draw_html_canvas_element(
&self,
canvas: &HTMLCanvasElement, // source canvas
@ -539,6 +542,7 @@ impl CanvasState {
Ok(())
}
#[allow(clippy::too_many_arguments)]
fn fetch_and_draw_image_data(
&self,
canvas: Option<&HTMLCanvasElement>,
@ -594,6 +598,7 @@ impl CanvasState {
// on the drawImage call arguments
// source rectangle = area of the original image to be copied
// destination rectangle = area of the destination canvas where the source image is going to be drawn
#[allow(clippy::too_many_arguments)]
fn adjust_source_dest_rects(
&self,
image_size: Size2D<f64>,
@ -840,6 +845,7 @@ impl CanvasState {
}
// https://html.spec.whatwg.org/multipage/#dom-context-2d-createradialgradient
#[allow(clippy::too_many_arguments)]
pub fn create_radial_gradient(
&self,
global: &GlobalScope,
@ -1279,6 +1285,7 @@ impl CanvasState {
// https://html.spec.whatwg.org/multipage/#dom-context-2d-putimagedata
#[allow(unsafe_code)]
#[allow(clippy::too_many_arguments)]
pub fn put_image_data_(
&self,
canvas_size: Size2D<u64>,
@ -1375,6 +1382,7 @@ impl CanvasState {
}
// https://html.spec.whatwg.org/multipage/#dom-context-2d-drawimage
#[allow(clippy::too_many_arguments)]
pub fn draw_image__(
&self,
canvas: Option<&HTMLCanvasElement>,
@ -1646,6 +1654,7 @@ impl CanvasState {
}
// https://html.spec.whatwg.org/multipage/#dom-context-2d-ellipse
#[allow(clippy::too_many_arguments)]
pub fn ellipse(
&self,
x: f64,