We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d0b432 commit a4e3e81Copy full SHA for a4e3e81
libm/src/lib.rs
@@ -5,6 +5,15 @@
5
all(target_arch = "wasm32", feature = "unstable"),
6
feature(core_intrinsics)
7
)]
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)]
17
18
mod math;
19
0 commit comments