Skip to content

Commit 03455e4

Browse files
committed
Filter out RLS output directories on tidy runs
1 parent bf8491e commit 03455e4

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)