We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef768ff commit 1791a92Copy full SHA for 1791a92
src/lib.rs
@@ -8,6 +8,17 @@
8
#![allow(deprecated)]
9
#![allow(non_snake_case)]
10
#![allow(non_upper_case_globals)]
11
+// Silence clippy warnings as a stopgap to get CI working.
12
+#![allow(clippy::enum_variant_names)]
13
+#![allow(clippy::identity_op)]
14
+#![allow(clippy::let_and_return)]
15
+#![allow(clippy::missing_safety_doc)]
16
+#![allow(clippy::missing_transmute_annotations)]
17
+#![allow(clippy::new_ret_no_self)]
18
+#![allow(clippy::new_without_default)]
19
+#![allow(clippy::too_many_arguments)]
20
+#![allow(clippy::transmute_ptr_to_ref)]
21
+#![allow(clippy::unit_arg)]
22
23
#[macro_use]
24
pub extern crate objc;
0 commit comments