From 31d53489bca824087a641dddc34e2e1ba06e20c4 Mon Sep 17 00:00:00 2001 From: yukang Date: Wed, 14 Sep 2022 14:44:42 +0800 Subject: [PATCH] tidy will not check coding style in bootstrap/target --- src/tools/tidy/src/walk.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/tidy/src/walk.rs b/src/tools/tidy/src/walk.rs index 6dca55dfa9f..b07e80767fa 100644 --- a/src/tools/tidy/src/walk.rs +++ b/src/tools/tidy/src/walk.rs @@ -23,6 +23,7 @@ pub fn filter_dirs(path: &Path) -> bool { "src/doc/book", // Filter RLS output directories "target/rls", + "src/bootstrap/target", ]; skip.iter().any(|p| path.ends_with(p)) }