From 60b6aa1fe800f9a5e181238f0ebbc4dc8e79105d Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 20 Mar 2026 12:42:16 +0300 Subject: [PATCH] pinakes-plugin-api: suppress `enum_variant_names` lint Signed-off-by: NotAShelf Change-Id: I01367dea28dd7b47cf765b6f33782a5e6a6a6964 --- crates/pinakes-plugin-api/src/manifest.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/pinakes-plugin-api/src/manifest.rs b/crates/pinakes-plugin-api/src/manifest.rs index 20547a1..a8af310 100644 --- a/crates/pinakes-plugin-api/src/manifest.rs +++ b/crates/pinakes-plugin-api/src/manifest.rs @@ -195,6 +195,7 @@ pub struct ManifestFilesystemCapability { } #[derive(Debug, Error)] +#[expect(clippy::enum_variant_names)] pub enum ManifestError { #[error("Failed to read manifest file: {0}")] IoError(#[from] std::io::Error),