From 7f0237a286410324614c7d9a1bfece23600c32a7 Mon Sep 17 00:00:00 2001 From: Alisa Vulpes Date: Thu, 16 Apr 2026 01:26:27 +0300 Subject: [PATCH] Add .DS_Store to .gitignore (#1509) macOS automatically creates a .DS_Store file if any custom macOS attributes are set to files (like visual position in Finder). It's redundant for this repo and to avoid that to be accidentally committed/pushed, I added it to .gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 0df5e389..38295e03 100644 --- a/.gitignore +++ b/.gitignore @@ -420,3 +420,6 @@ result result-* .direnv/ .xwin-cache/ + +# macOS +.DS_Store