From 1e8f3c09ff76c7e8b84b81e72cd59798e676eaff Mon Sep 17 00:00:00 2001 From: Dax McDonald Date: Thu, 14 Dec 2023 12:09:57 -0700 Subject: [PATCH] chore: Ignore bazel in search and quick-open vscode (#59011) --- .vscode/settings.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 1b17d6d0980..823e092818f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,7 +11,8 @@ "**/.cache": true, "**/.nyc_output": true, "doc/_resources/assets": true, - "**/.eslintcache": true + "**/.eslintcache": true, + "bazel*/**": true }, "files.exclude": { "**/*.scss.d.ts": true @@ -49,7 +50,9 @@ "eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"], "editor.codeActionsOnSave": {}, "eslint.codeActionsOnSave.mode": "problems", - "eslint.options": { "cache": true }, + "eslint.options": { + "cache": true + }, "eslint.workingDirectories": ["./dev/release", "./client/*"], "go.lintTool": "golangci-lint", "shellformat.flag": "-i 2 -ci",