From b8f2e03627b0423368a70f329be6016def6959cd Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Fri, 20 Dec 2024 10:11:28 +1300 Subject: [PATCH] Ignore clippy::empty_line_after_doc_comments lint Signed-off-by: Nico Burns --- markup5ever/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/markup5ever/lib.rs b/markup5ever/lib.rs index a7ba2547..a04b8f15 100644 --- a/markup5ever/lib.rs +++ b/markup5ever/lib.rs @@ -8,6 +8,8 @@ // except according to those terms. #![allow(unexpected_cfgs)] +// This error is coming from code generated by PHF which we cannot directly fix +#![allow(clippy::empty_line_after_doc_comments)] pub use tendril;