Skip to content

Commit

Permalink
Allow upper case names, acronyms
Browse files Browse the repository at this point in the history
New clippy is very aggressive about proper naming. We're not
following proper naming in the 0.4 HAL. Disable the warnings for
now.
  • Loading branch information
mciantyre committed Apr 1, 2021
1 parent 2658b74 commit 27d8518
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions imxrt-hal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//! See the module-level documentation for more information and examples.

#![no_std]
#![allow(clippy::upper_case_acronyms)] // Established pattern in the 0.4 HAL; should be addressed later

pub use imxrt_ral as ral;

Expand Down

0 comments on commit 27d8518

Please sign in to comment.