[GIT] .gitignore clangd and vscode index files. (#2406)

Vscode or clangd can create indexing cache for symbol resolutions. Those
files should be ignored by git.

I'm basically cloning what is done in the LLVM repo.
This commit is contained in:
Hongtao Yu
2023-09-27 22:16:20 -07:00
committed by GitHub
parent b25edc139e
commit 9073a393e0

7
.gitignore vendored
View File

@@ -37,3 +37,10 @@ docs/dialects/
docs/getting-started/tutorials
!python/tutorials/*.py
!python/tutorials/*.rst
# clangd index. (".clangd" is a config file now, thus trailing slash)
.clangd/
.cache
/compile_commands.json
.vscode
.vs