1 parent 362e50d commit d65fbbfCopy full SHA for d65fbbf
1 file changed
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