04db423416
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
41 lines
321 B
Plaintext
41 lines
321 B
Plaintext
# Bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Node
|
|
node_modules/
|
|
.npm
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test outputs and intermediates
|
|
output/
|
|
output/**/
|
|
|
|
# Pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.log
|
|
|
|
# Temp files
|
|
temp/
|
|
*.tmp
|