From 5894ae5afe728efec73e8ab1ceaf1b0bfe4216cc Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Tue, 27 Jan 2026 17:32:33 +0100 Subject: [PATCH] chore: .gitignore: add compile_commands.json & .cache (#568) ## Summary * **What is the goal of this PR?** Quality of Life * **What changes are included?** Add compile_commands.json & .cache to .gitignore . Both are use by clangd that can help IDE support. Run `pio run --target compiledb` to generate `compile_commands.json`. --- ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**NO**_ --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 754c9f6..ec281eb 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