Переглянути джерело

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 <pbonzini@redhat.com>
Paolo Bonzini 6 місяців тому
батько
коміт
6b03c03806
1 змінених файлів з 2 додано та 0 видалено
  1. 2 0
      rust/clippy.toml

+ 2 - 0
rust/clippy.toml

@@ -0,0 +1,2 @@
+doc-valid-idents = ["PrimeCell", ".."]
+msrv = "1.63.0"