clippy: Fix several warnings in components/script and components/webgpu (#33633)

* clippy: Fix several warnings in components

Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>

* fix: Allow upper_case_acronyms

Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>

* clippy: Fix more warnings

Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>

---------

Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
This commit is contained in:
tanishka 2024-10-04 10:59:10 +05:30 committed by GitHub
parent 6e043cd09e
commit 03b8034f68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 8 additions and 3 deletions

View file

@ -1678,6 +1678,7 @@ fn serialize_document(doc: &Document) -> Fallible<DOMString> {
pub fn is_field_value(slice: &[u8]) -> bool {
// Classifications of characters necessary for the [CRLF] (SP|HT) rule
#[derive(PartialEq)]
#[allow(clippy::upper_case_acronyms)]
enum PreviousCharacter {
Other,
CR,