Files
2026-01-18 02:57:46 +00:00

27 lines
235 B
Plaintext

# Ignore anything that starts with a dot
.*
# But don't ignore .gitignore itself
!.gitignore
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
.eggs/
# IDE
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db