From 06d6a3e7a63142caa8374dba01237a5b9ba51e60 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Wed, 26 Jul 2023 17:30:38 -0400 Subject: [PATCH] vscode: exclude public-api fixtures from search --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f922a6df..af346ecc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,7 @@ { "rust-analyzer.check.allTargets": true, - "rust-analyzer.check.command": "clippy" + "rust-analyzer.check.command": "clippy", + "search.exclude": { + "/xtask/public-api/*.txt": true, + }, }