Skip to content

Commit a4e3e81

Browse files
committed
suppress useless clippy warnings
1 parent 8d0b432 commit a4e3e81

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

libm/src/lib.rs

+9
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)