8491edac22
The repo-level .gitignore had a blanket *.md rule with only CHANGELOG.md exempted. Two adjustments: - Allow specs/ to be tracked (design docs / RFCs live here, public). - Restrict the README.md exception to the root (/README.md) so that per-directory README files (e.g. tests/fixtures/releases/README.md) stay ignored as before — no unintended scope creep. - Explicitly ignore /.claude/, the private dev-docs sub-repo that lives inside the working tree but is versioned and pushed separately. CHANGELOG: Internal entry.
85 lines
834 B
Plaintext
85 lines
834 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
|
|
!/README.md
|
|
!specs/
|
|
!specs/**/*.md
|
|
|
|
# Private dev docs (separate git repo inside; see .claude/CLAUDE.md)
|
|
/.claude/
|
|
|
|
#
|