774f71c8cc
The blanket *.md ignore was hiding CHANGELOG.md, forcing 'git add -f' on every update. Allow-list it so the file lives under normal git tracking. CLAUDE.md stays local (user keeps it personal until a dedicated repo).
79 lines
719 B
Plaintext
79 lines
719 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 environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.ruff_cache
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Qodo
|
|
.qodo/
|
|
|
|
# Memory and state files
|
|
memory.json
|
|
memory_data/
|
|
|
|
# Coverage reports
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
*.cover
|
|
|
|
# Pytest cache
|
|
.pytest_cache/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets
|
|
.env.secrets
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
env_backup/
|
|
|
|
# Application data dir
|
|
data/*
|
|
|
|
# Application logs
|
|
logs/*
|
|
|
|
# Documentation folder
|
|
docs/
|
|
|
|
# .md files (project-level Markdown is brol-y; allow-list the ones we track)
|
|
*.md
|
|
!CHANGELOG.md
|
|
|
|
#
|