From 5fe9a7b4f42c9afe63c7874159524e2d91c3564b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Dinis=20Ferreira?= Date: Thu, 30 Apr 2026 15:23:47 +0200 Subject: [PATCH] chore: ignore .DS_Store macOS Finder drops .DS_Store files in any directory the user opens; ignoring them keeps the working tree clean for contributors on macOS. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 00f1264b6c..63720e24cd 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ *.xtendbin /*/xtend-gen/* !/*/xtend-gen/.gitignore + +# macOS +.DS_Store