Skip to content

Commit a88b96b

Browse files
authored
Rollup merge of #101786 - chenyukang:fix-tidy-for-bootstrap, r=jyn514
Tidy will not check coding style in bootstrap/target `bootstrap/target` may contains the files generated by `rust-analysis`, which we won't want to be checked.
2 parents 9449848 + 31d5348 commit a88b96b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/tools/tidy/src/walk.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pub fn filter_dirs(path: &Path) -> bool {
2323
"src/doc/book",
2424
// Filter RLS output directories
2525
"target/rls",
26+
"src/bootstrap/target",
2627
];
2728
skip.iter().any(|p| path.ends_with(p))
2829
}

0 commit comments

Comments
 (0)