Clippy fix

This commit is contained in:
Martin Algesten
2023-01-31 08:41:34 +01:00
parent abda74c4d8
commit 05b9a82a38

View File

@@ -8,6 +8,10 @@
#![allow(clippy::upper_case_acronyms)] #![allow(clippy::upper_case_acronyms)]
#![allow(clippy::result_large_err)] #![allow(clippy::result_large_err)]
#![allow(clippy::only_used_in_recursion)] #![allow(clippy::only_used_in_recursion)]
// println!("{var}") doesn't allow even the simplest expressions for var,
// such as "{foo.var}" hence this lint forces us to have inconsistent
// formatting args. I prefer a lint that forbid "{var}".
#![allow(clippy::uninlined_format_args)]
//!<div align="center"> //!<div align="center">
//! <!-- Version --> //! <!-- Version -->