Skip to content

Commit c0e77dd

Browse files
committed
clippy: Ignore uninlined_format_args
See: https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args Recently introduced - I think it looks a bit messier inline. Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 2556c8e commit c0e77dd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

framework_lib/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
33
#![cfg_attr(feature = "uefi", no_std)]
44

5+
#![allow(clippy::uninlined_format_args)]
6+
57
extern crate alloc;
68
#[cfg(feature = "uefi")]
79
extern crate no_std_compat as std; // TODO: I don't this should be necessary

0 commit comments

Comments
 (0)