diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-15 19:03:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 19:03:15 -0700 |
commit | 019908e5f02ca2670dd5f956a816cef045f0a777 (patch) | |
tree | a52c47501b9a093876374a454ea81b7e9a54d2ed | |
parent | 775e74e0d41daa9cf3679c2e215f4ef46eee9cbc (diff) | |
parent | 8be9fd83ad07159d6c707f741b18c8feefa1c1b6 (diff) |
Merge pull request #27056 from guzzard/master
Ignore default ccls cache folder and compile commands json file
-rw-r--r-- | .gitignore | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index fe504482b3..6acab19251 100644 --- a/.gitignore +++ b/.gitignore @@ -316,3 +316,10 @@ platform/windows/godot_res.res # Scons progress indicator .scons_node_count + +# ccls cache (https://github.com/MaskRay/ccls) +.ccls-cache/ + +# compile commands (https://clang.llvm.org/docs/JSONCompilationDatabase.html) +compile_commands.json + |