We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc1998f + c8b9093 commit f42f7a0Copy full SHA for f42f7a0
clippy_dev/src/fmt.rs
@@ -47,11 +47,7 @@ pub fn run(check: bool, verbose: bool) {
47
let entry = entry?;
48
let path = entry.path();
49
50
- if path.extension() != Some("rs".as_ref())
51
- || entry.file_name() == "ice-3891.rs"
52
- // Avoid rustfmt bug rust-lang/rustfmt#1873
53
- || cfg!(windows) && entry.file_name() == "implicit_hasher.rs"
54
- {
+ if path.extension() != Some("rs".as_ref()) || entry.file_name() == "ice-3891.rs" {
55
continue;
56
}
57
0 commit comments