Skip to content

Commit

Permalink
remove unnecessary allow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonboh committed Sep 27, 2023
1 parent f475b51 commit 1cbf7ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ui/redundant_pub_crate.fixed
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(dead_code, clippy::struct_field_names)]
#![allow(dead_code)]
#![warn(clippy::redundant_pub_crate)]

mod m1 {
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/redundant_pub_crate.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(dead_code, clippy::struct_field_names)]
#![allow(dead_code)]
#![warn(clippy::redundant_pub_crate)]

mod m1 {
Expand Down

0 comments on commit 1cbf7ae

Please sign in to comment.