Skip to content

Commit 1791a92

Browse files
committed
Clippy
1 parent ef768ff commit 1791a92

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/lib.rs

+11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
#![allow(deprecated)]
99
#![allow(non_snake_case)]
1010
#![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)]
1122

1223
#[macro_use]
1324
pub extern crate objc;

0 commit comments

Comments
 (0)