Skip to content

Commit

Permalink
Disable struct_field_names to fix nightly clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Oct 23, 2023
1 parent 2149cce commit 4f38822
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions altium/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@

// #![allow(unused)]
#![warn(clippy::pedantic)]
#![allow(clippy::unreadable_literal)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::struct_excessive_bools)]
#![allow(clippy::missing_panics_doc)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::new_without_default)]
#![allow(clippy::struct_field_names)]
#![allow(clippy::struct_excessive_bools)]
#![allow(clippy::unreadable_literal)]

mod common;
mod logging;
Expand Down

0 comments on commit 4f38822

Please sign in to comment.