File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -565,7 +565,6 @@ impl<'tcx> LateLintPass<'tcx> for Attributes {
565
565
|| is_word ( lint, sym ! ( unreachable_pub) )
566
566
|| is_word ( lint, sym ! ( unused) )
567
567
|| is_word ( lint, sym ! ( unused_import_braces) )
568
- || is_word ( lint, sym ! ( unused_imports) )
569
568
|| extract_clippy_lint ( lint) . map_or ( false , |s| {
570
569
matches ! (
571
570
s. as_str( ) ,
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ mod module {
85
85
}
86
86
87
87
#[rustfmt::skip]
88
- #[allow(unused_import_braces, unused_imports )]
88
+ #[allow(unused_import_braces)]
89
89
use module::{Struct};
90
90
91
91
fn main() {
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ mod module {
85
85
}
86
86
87
87
#[ rustfmt:: skip]
88
- #[ allow( unused_import_braces, unused_imports ) ]
88
+ #[ allow( unused_import_braces) ]
89
89
use module:: { Struct } ;
90
90
91
91
fn main ( ) {
You can’t perform that action at this time.
0 commit comments