From 46aef09a908e20868fea0effd15fbaeea5348ed9 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Sun, 12 Feb 2023 15:46:44 +0100 Subject: [PATCH] Add more clippy exceptions for ffi module --- fish-rust/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/fish-rust/src/lib.rs b/fish-rust/src/lib.rs index 11b39e648..9a12c3e69 100644 --- a/fish-rust/src/lib.rs +++ b/fish-rust/src/lib.rs @@ -11,6 +11,7 @@ #[allow(clippy::module_inception)] #[allow(clippy::new_ret_no_self)] #[allow(clippy::wrong_self_convention)] +#[allow(clippy::needless_lifetimes)] mod ffi; mod ffi_init; mod ffi_tests;