From 134972219c17e37895c977693f7bc797308361b8 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 28 Jul 2023 02:59:05 +0900 Subject: [PATCH] Update lint test --- tests/lint.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/lint.rs b/tests/lint.rs index 7ab3b46..28f6410 100644 --- a/tests/lint.rs +++ b/tests/lint.rs @@ -44,7 +44,12 @@ )] #![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::restriction)] #![allow(clippy::blanket_clippy_restriction_lints)] // this is a test, so enable all restriction lints intentionally. -#![allow(clippy::exhaustive_structs, clippy::exhaustive_enums, clippy::single_char_lifetime_names)] // TODO +#![allow( + clippy::exhaustive_enums, + clippy::exhaustive_structs, + clippy::min_ident_chars, + clippy::single_char_lifetime_names +)] // TODO pub mod basic { include!("include/basic.rs");