We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 186b5b2 commit 2c90083Copy full SHA for 2c90083
clippy_dev/src/fmt.rs
@@ -44,7 +44,11 @@ pub fn run(check: bool, verbose: bool) {
44
let entry = entry?;
45
let path = entry.path();
46
47
- if path.extension() != Some("rs".as_ref()) || entry.file_name() == "ice-3891.rs" {
+ if path.extension() != Some("rs".as_ref())
48
+ || entry.file_name() == "ice-3891.rs"
49
+ // Avoid rustfmt bug rust-lang/rustfmt#1873
50
+ || cfg!(windows) && entry.file_name() == "implicit_hasher.rs"
51
+ {
52
continue;
53
}
54
0 commit comments