From 8d34a517fcbdf0fa1a8ee9daf24c4b086991319c Mon Sep 17 00:00:00 2001 From: Ian Hobson Date: Fri, 12 May 2023 16:52:06 +0200 Subject: [PATCH] clippy: Don't warn about the LUFS type name --- src/bext.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bext.rs b/src/bext.rs index 5c0fdb1..a60da4c 100644 --- a/src/bext.rs +++ b/src/bext.rs @@ -1,4 +1,5 @@ pub type LU = f32; +#[allow(clippy::upper_case_acronyms)] pub type LUFS = f32; pub type Decibels = f32;