build: Ignore .history for the xyz.local-history VSCode extension (#38121)

Ignore .history for the xyz.local-history VSCode extension

PR Close #38121
This commit is contained in:
Misko Hevery 2020-07-17 11:43:46 -07:00 committed by Andrew Kushnir
parent 38a7021d5e
commit 095cfd961d
2 changed files with 5 additions and 1 deletions

3
.gitignore vendored
View File

@ -42,3 +42,6 @@ yarn-error.log
.notes.md .notes.md
baseline.json baseline.json
# Ignore .history for the xyz.local-history VSCode extension
.history

View File

@ -26,6 +26,7 @@
"**/bazel-out": true, "**/bazel-out": true,
"**/dist": true, "**/dist": true,
"**/aio/src/generated": true, "**/aio/src/generated": true,
".history": true,
}, },
"git.ignoreLimitWarning": true, "git.ignoreLimitWarning": true,
} }