Skip to content

Commit 4ea2be7

Browse files
authored
Rollup merge of rust-lang#64998 - spastorino:filter-rls-on-tidy, r=petrochenkov
Filter out RLS output directories on tidy runs Closes rust-lang#64957 r? @petrochenkov
2 parents f188879 + 03455e4 commit 4ea2be7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tools/tidy/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ fn filter_dirs(path: &Path) -> bool {
5353
"src/tools/rls",
5454
"src/tools/rust-installer",
5555
"src/tools/rustfmt",
56+
57+
// Filter RLS output directories
58+
"target/rls",
5659
];
5760
skip.iter().any(|p| path.ends_with(p))
5861
}

0 commit comments

Comments
 (0)