chore: .gitignore: add compile_commands.json & .cache

Both are use by clangd that can help IDE support.

Run `pio run --target compiledb` to generate `compile_commands.json`.
This commit is contained in:
Boris Faure 2026-01-27 17:22:42 +01:00
parent 8c1c80787a
commit 8ffdbda46a
No known key found for this signature in database
GPG Key ID: EAA9CD729F522998

4
.gitignore vendored
View File

@ -6,4 +6,6 @@ lib/EpdFont/fontsrc
*.generated.h *.generated.h
.vs .vs
build build
**/__pycache__/ **/__pycache__/
/compile_commands.json
/.cache