1
Fork 0

Rollup merge of #64998 - spastorino:filter-rls-on-tidy, r=petrochenkov

Filter out RLS output directories on tidy runs

Closes #64957

r? @petrochenkov
This commit is contained in:
Mazdak Farrokhzad 2019-10-03 04:08:18 +02:00 committed by GitHub
commit 4ea2be751c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,9 @@ fn filter_dirs(path: &Path) -> bool {
"src/tools/rls",
"src/tools/rust-installer",
"src/tools/rustfmt",
// Filter RLS output directories
"target/rls",
];
skip.iter().any(|p| path.ends_with(p))
}