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 7c9da3c commit 206bb08Copy full SHA for 206bb08
clippy_dev/src/fmt.rs
@@ -60,11 +60,7 @@ pub fn run(check: bool, verbose: bool) {
60
let entry = entry?;
61
let path = entry.path();
62
63
- if path.extension() != Some("rs".as_ref())
64
- || entry.file_name() == "ice-3891.rs"
65
- // Avoid rustfmt bug rust-lang/rustfmt#1873
66
- || cfg!(windows) && entry.file_name() == "implicit_hasher.rs"
67
- {
+ if path.extension() != Some("rs".as_ref()) || entry.file_name() == "ice-3891.rs" {
68
continue;
69
}
70
0 commit comments