Skip to content

Commit

Permalink
--fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Mar 28, 2023
1 parent 61c8f59 commit 73fabf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/swc_css_ast/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl Take for Token {
}
}

#[allow(clippy::derive_hash_xor_eq)]
#[allow(clippy::derived_hash_with_manual_eq)]
#[allow(clippy::transmute_float_to_int)]
impl Hash for Token {
fn hash<H: Hasher>(&self, state: &mut H) {
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_ast/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ pub struct Number {

impl Eq for Number {}

#[allow(clippy::derive_hash_xor_eq)]
#[allow(clippy::derived_hash_with_manual_eq)]
#[allow(clippy::transmute_float_to_int)]
impl Hash for Number {
fn hash<H: Hasher>(&self, state: &mut H) {
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_ast/src/lit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ impl EqIgnoreSpan for Number {
}
}

#[allow(clippy::derive_hash_xor_eq)]
#[allow(clippy::derived_hash_with_manual_eq)]
#[allow(clippy::transmute_float_to_int)]
impl Hash for Number {
fn hash<H: Hasher>(&self, state: &mut H) {
Expand Down

0 comments on commit 73fabf6

Please sign in to comment.