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

@ -4,8 +4,6 @@
//! CSS table formatting contexts.
#![allow(clippy::too_many_arguments)]
use std::cmp::max;
use std::fmt;
use std::iter::{Enumerate, Peekable};
@ -982,6 +980,7 @@ pub fn propagate_column_inline_sizes_to_child(
}
/// Lay out table cells inline according to the computer column sizes.
#[allow(clippy::too_many_arguments)]
fn set_inline_position_of_child_flow(
child_flow: &mut dyn Flow,
child_index: usize,