- Remove tests/ directory from version control (added to .gitignore) - Add .idea/ to .gitignore - Ripper: CDDB lookup, non-interactive mode, English UI, file renaming - Config: abcde format mapping, per-format quality options - CLI: English help texts, new --no-cddb / --pipes / --parallel / --quality options Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
45 lines
409 B
Text
45 lines
409 B
Text
# Bytecode / Cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / Packaging
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
idea/
|
|
.idea/
|
|
tests/
|
|
testdata/
|
|
CLAUDE.md
|
|
|
|
# Virtuelle Umgebungen
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
|
|
# Tests / Coverage
|
|
.coverage
|
|
.tox/
|
|
pytest_cache/
|
|
htmlcov/
|
|
|
|
# Logs / temporäre Files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# MyPy / static analysis
|
|
.mypy_cache/
|
|
.pytype/
|
|
.pyre/
|