diff mbox series

[PULL,4/7] rust: add clippy configuration file

Message ID 20250207102802.2445596-5-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show
Series [PULL,1/7] rust: remove unnecessary Cargo.toml metadata | expand

Commit Message

Paolo Bonzini Feb. 7, 2025, 10:27 a.m. UTC
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 <pbonzini@redhat.com>
---
 rust/clippy.toml | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 rust/clippy.toml
diff mbox series

Patch

diff --git a/rust/clippy.toml b/rust/clippy.toml
new file mode 100644
index 00000000000..f42154e95ec
--- /dev/null
+++ b/rust/clippy.toml
@@ -0,0 +1,2 @@ 
+doc-valid-idents = ["PrimeCell", ".."]
+msrv = "1.63.0"