Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362e50d commit 9fb5d7cCopy full SHA for 9fb5d7c
src/lib.rs
@@ -510,6 +510,10 @@
510
#![deny(missing_docs)]
511
// I don't think elided lifetimes help in understanding the code.
512
#![allow(clippy::needless_lifetimes)]
513
+// Since you can't use inlined args for all cases, using it means the
514
+// code will have a mix of inlined and not inlined. Code should be
515
+// uniform, thus this lint is misguided.
516
+#![allow(clippy::uninlined_format_args)]
517
518
#[macro_use]
519
extern crate log;
0 commit comments