mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
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:
parent
f613159cba
commit
cc082efbfd
36 changed files with 86 additions and 64 deletions
|
@ -26,6 +26,7 @@ pub struct BluetoothCharacteristicProperties {
|
|||
|
||||
#[allow(non_snake_case)]
|
||||
impl BluetoothCharacteristicProperties {
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn new_inherited(
|
||||
broadcast: bool,
|
||||
read: bool,
|
||||
|
@ -51,6 +52,7 @@ impl BluetoothCharacteristicProperties {
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn new(
|
||||
global: &GlobalScope,
|
||||
broadcast: bool,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue