mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-04-08 17:05:59 +02:00
other: ignore uninlined_format_args clippy lint for now (#1004)
This commit is contained in:
parent
32434932a6
commit
9ad1d8f0b4
3
build.rs
3
build.rs
@ -13,8 +13,7 @@ fn create_dir(dir: &Path) -> io::Result<()> {
|
||||
Ok(()) => {}
|
||||
Err(err) => {
|
||||
eprintln!(
|
||||
"Failed to create a directory at location {:?}, encountered error {:?}. Aborting...",
|
||||
dir, err
|
||||
"Failed to create a directory at location {dir:?}, encountered error {err:?}. Aborting...",
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
#![warn(rust_2018_idioms)]
|
||||
#![allow(clippy::uninlined_format_args)]
|
||||
#[allow(unused_imports)]
|
||||
#[cfg(feature = "log")]
|
||||
#[macro_use]
|
||||
|
@ -6,6 +6,7 @@
|
||||
//! bottom, refer to [here](https://clementtsang.github.io/bottom/stable/).
|
||||
|
||||
#![warn(rust_2018_idioms)]
|
||||
#![allow(clippy::uninlined_format_args)]
|
||||
#[allow(unused_imports)]
|
||||
#[cfg(feature = "log")]
|
||||
#[macro_use]
|
||||
|
Loading…
x
Reference in New Issue
Block a user