Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jan 15, 2025
1 parent ef768ff commit 1791a92
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@
#![allow(deprecated)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
// Silence clippy warnings as a stopgap to get CI working.
#![allow(clippy::enum_variant_names)]
#![allow(clippy::identity_op)]
#![allow(clippy::let_and_return)]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::missing_transmute_annotations)]
#![allow(clippy::new_ret_no_self)]
#![allow(clippy::new_without_default)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::transmute_ptr_to_ref)]
#![allow(clippy::unit_arg)]

#[macro_use]
pub extern crate objc;
Expand Down

0 comments on commit 1791a92

Please sign in to comment.