From 8ffdbda46ae624e86e166dd76ce4b2b8790d10dc Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Tue, 27 Jan 2026 17:22:42 +0100 Subject: [PATCH] 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`. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754c9f68..ec281eb9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ lib/EpdFont/fontsrc *.generated.h .vs build -**/__pycache__/ \ No newline at end of file +**/__pycache__/ +/compile_commands.json +/.cache