From 095cfd961ddfae75ef3094c105cc8af956d91a84 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Fri, 17 Jul 2020 11:43:46 -0700 Subject: [PATCH] build: Ignore .history for the xyz.local-history VSCode extension (#38121) Ignore .history for the xyz.local-history VSCode extension PR Close #38121 --- .gitignore | 3 +++ .vscode/recommended-settings.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1dfe1345ba..5c592aed14 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ yarn-error.log .notes.md baseline.json + +# Ignore .history for the xyz.local-history VSCode extension +.history diff --git a/.vscode/recommended-settings.json b/.vscode/recommended-settings.json index a61ce34c5d..897bfc88e2 100644 --- a/.vscode/recommended-settings.json +++ b/.vscode/recommended-settings.json @@ -26,6 +26,7 @@ "**/bazel-out": true, "**/dist": true, "**/aio/src/generated": true, + ".history": true, }, "git.ignoreLimitWarning": true, -} +} \ No newline at end of file