Skip to content

Commit 1ce9924

Browse files
chore: improve .gitignore with better organization and macOS exclusion
Add section comments for better organization and exclude .DS_store files created by macOS Finder. Changes: - Add "# Python" section header for Python-related ignores - Add "# Mac Os" section and .DS_store exclusion - Fix missing newline at end of file 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a8e016e commit 1ce9924

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
# Python
12
.venv/
23
.pytest_cache/
34
__pycache__/
45
dist/
56
logs/
67
data/
78

8-
*.pyc
9+
*.pyc
10+
11+
# Mac Os
12+
.DS_store

0 commit comments

Comments
 (0)