Skip to content

Commit 4348e35

Browse files
committed
let_unit_value will need to be allowed
1 parent 5ff2259 commit 4348e35

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

boa/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
clippy::must_use_candidate,
3131
clippy::missing_errors_doc,
3232
clippy::as_conversions,
33+
clippy::let_unit_value,
3334
missing_doc_code_examples
3435
)]
3536

boa/src/profiler.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pub struct BoaProfiler {
2020
}
2121

2222
pub static mut INSTANCE: OnceCell<BoaProfiler> = OnceCell::new();
23+
2324
#[cfg(feature = "profiler")]
2425
impl BoaProfiler {
2526
pub fn start_event(&self, label: &str, category: &str) -> TimingGuard<'_, SerializationSink> {

0 commit comments

Comments
 (0)