Skip to content

Commit 7db7252

Browse files
committed
js(nostr-sdk): fix clippy
1 parent 67674d6 commit 7db7252

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bindings/nostr-sdk-js/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![allow(unknown_lints, clippy::arc_with_non_send_sync)]
66
#![allow(clippy::new_without_default)]
77
#![allow(clippy::drop_non_drop)]
8+
#![allow(non_snake_case)]
89

910
pub use nostr_js;
1011

bindings/nostr-sdk-js/src/logger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl Default for WASMLayerConfigBuilder {
148148
}
149149
}
150150

151-
#[derive(Debug, PartialEq)]
151+
#[derive(Debug, PartialEq, Eq)]
152152
pub struct WASMLayerConfig {
153153
report_logs_in_timings: bool,
154154
report_logs_in_console: bool,

0 commit comments

Comments
 (0)