chore: add .gitignore file with common patterns for Python, IDEs, and temporary files.chore: add .gitignore file with common patterns for Python, IDEs, and temporary files.

This commit is contained in:
shiva108
2025-12-07 17:07:56 +01:00
parent 20151e0cd2
commit d3e96e5f30

29
.gitignore vendored Normal file
View File

@@ -0,0 +1,29 @@
# Local files - never commit
ignore/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
dist/
build/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.log