Skip to content

Commit 2cb64f2

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 d2c92d0 + 03455e4 commit 2cb64f2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tools/tidy/src/lib.rs

Lines changed: 3 additions & 0 deletions
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)