From d9280b64dad5580c6648754db32e3a9f0862b0d0 Mon Sep 17 00:00:00 2001 From: Brian Summa Date: Tue, 20 May 2025 09:00:16 -0500 Subject: [PATCH] chore(git): add macOS-specific patterns to gitignore Added standard macOS-specific ignore patterns from gitignore.io to prevent macOS system files from being accidentally committed to the repository. This helps maintain a cleaner codebase and improves cross-platform compatibility. --- .gitignore | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ac9a58d..5ab3048 100644 --- a/.gitignore +++ b/.gitignore @@ -163,4 +163,41 @@ cython_debug/ pythonik/tests/test_*_integration.py # Misc. -IGNORE \ No newline at end of file +IGNORE + +# Created by https://www.toptal.com/developers/gitignore/api/macos +# Edit at https://www.toptal.com/developers/gitignore?templates=macos + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +# End of https://www.toptal.com/developers/gitignore/api/macos