Skip to content

Commit

Permalink
Update lint test
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jul 27, 2023
1 parent d24eb7c commit 1349722
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/lint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 1349722

Please sign in to comment.