Suppress unknown clippy lints
Since this is code suppressing new clippy lints, it also makes sense to
allow it to suppress lints which don't exist yet for compatibility with
older clippy.
Test: m
Bug: 184799689
Change-Id: I7953a252885078932e7f7312414237b6375af331
diff --git a/macro/src/expand.rs b/macro/src/expand.rs
index 12e4fe0..7c194ad 100644
--- a/macro/src/expand.rs
+++ b/macro/src/expand.rs
@@ -131,7 +131,7 @@
#doc
#attrs
#[deny(improper_ctypes)]
- #[allow(non_camel_case_types, non_snake_case, clippy::upper_case_acronyms)]
+ #[allow(non_camel_case_types, non_snake_case, clippy::upper_case_acronyms, clippy::unknown_clippy_lints)]
#vis #mod_token #ident #expanded
}
}