codex-py hatte kein .claude/ — F-xx-Worker liefen mit nackten globalen Settings und wurden bei jedem uv/ruff/mypy/pytest/git-Befehl geprompted. settings.json spiegelt den knowledge-base-Stil (acceptEdits + harter deny-Block), zugeschnitten auf den Python/uv-Stack + podman (DB) + ollama. settings.local.json gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
480 B
Plaintext
39 lines
480 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Environment secrets — NEVER commit
|
|
.env
|
|
|
|
# Type-checker and linter caches
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Test caches
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Editor / OS artefacts
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# Claude Code — settings.json IS committed (team-wide); only personal overrides ignored
|
|
.claude/settings.local.json
|