mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-20 20:24:47 +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(()) => {}
|
Ok(()) => {}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
eprintln!(
|
eprintln!(
|
||||||
"Failed to create a directory at location {:?}, encountered error {:?}. Aborting...",
|
"Failed to create a directory at location {dir:?}, encountered error {err:?}. Aborting...",
|
||||||
dir, err
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#![warn(rust_2018_idioms)]
|
#![warn(rust_2018_idioms)]
|
||||||
|
#![allow(clippy::uninlined_format_args)]
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
#[cfg(feature = "log")]
|
#[cfg(feature = "log")]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
//! bottom, refer to [here](https://clementtsang.github.io/bottom/stable/).
|
//! bottom, refer to [here](https://clementtsang.github.io/bottom/stable/).
|
||||||
|
|
||||||
#![warn(rust_2018_idioms)]
|
#![warn(rust_2018_idioms)]
|
||||||
|
#![allow(clippy::uninlined_format_args)]
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
#[cfg(feature = "log")]
|
#[cfg(feature = "log")]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user