From: Paolo Bonzini Date: Thu, 6 Feb 2025 11:26:12 +0000 (+0100) Subject: rust: add clippy configuration file X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6b03c038067f2171110425593f722df8f4d19d17;p=qemu.git rust: add clippy configuration file Configure the minimum supported Rust version (though strictly speaking that's redundant with Cargo.toml), and the list of CamelCase identifiers that are not Rust types. Signed-off-by: Paolo Bonzini --- diff --git a/rust/clippy.toml b/rust/clippy.toml new file mode 100644 index 0000000000..5d190f91de --- /dev/null +++ b/rust/clippy.toml @@ -0,0 +1,2 @@ +doc-valid-idents = ["PrimeCell", ".."] +msrv = "1.63.0"