刪除項目: - tests/e2e/ (空目錄) - tests/temp_output/ (測試臨時輸出) - tests/__pycache__/ (Python快取) 更新 .gitignore: - 新增 tests/temp_output/, tests/e2e/, .benchmarks/ 到忽略清單 保留項目: - tests/unit/ (單元測試) - tests/integration/ (整合測試) - tests/fixtures/ (測試用範例檔案) 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
72 lines
617 B
Plaintext
72 lines
617 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
.hypothesis/
|
|
tests/temp_output/
|
|
tests/e2e/
|
|
.benchmarks/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Output files
|
|
docs/validation/coverage/
|
|
docs/audit/
|
|
*.pdf
|
|
*.png
|
|
*.svg
|
|
|
|
# Node modules (frontend)
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/build/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|