227e543ad9
Added rules to ignore virtual environment directories (venv, .venv) and test artifact files (*.test, *.tmp) to prevent them from being tracked in the repository.
35 lines
327 B
Plaintext
35 lines
327 B
Plaintext
# Python bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Local configuration
|
|
*.ini
|
|
*.key
|
|
*.env
|
|
|
|
# Packaging artifacts
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
*.deb
|
|
|
|
# Logs and misc
|
|
*.log
|
|
|
|
# OS and editor-specific
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
|
|
# yt-dlp temporary/partial files
|
|
*.part
|
|
*.ytdl
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
|
|
# Test artifacts
|
|
*.test
|
|
*.tmp
|