Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 52983be

Browse files
committed
suppress useless clippy warnings
1 parent 44d1d23 commit 52983be

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/lib.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
all(target_arch = "wasm32", feature = "unstable"),
66
feature(core_intrinsics)
77
)]
8+
#![allow(clippy::unreadable_literal)]
9+
#![allow(clippy::many_single_char_names)]
10+
#![allow(clippy::needless_return)]
11+
#![allow(clippy::int_plus_one)]
12+
#![allow(clippy::deprecated_cfg_attr)]
13+
#![allow(clippy::mixed_case_hex_literals)]
14+
#![allow(clippy::float_cmp)]
15+
#![allow(clippy::eq_op)]
16+
#![allow(clippy::assign_op_pattern)]
817

918
mod math;
1019

0 commit comments

Comments
 (0)