.claude/settings.local.json was only excluded by a machine-global ignore file, so it would be trackable in any fresh clone. It holds machine-local state (including the internal Gitea host), so ignore it from the repo itself. Also cover the .tmp.* files written during atomic saves, which otherwise break `git add -A`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
45 lines
613 B
Plaintext
45 lines
613 B
Plaintext
# deps & caches
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
# build outputs
|
|
target/
|
|
dist/
|
|
dist-portable/
|
|
build/
|
|
# tauri auto-generated (regenerated on every build)
|
|
/src-tauri/gen/schemas/
|
|
# logs & databases
|
|
*.log
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
# secrets / credentials
|
|
.env
|
|
*.env
|
|
*cookie*
|
|
*credential*
|
|
credentials.json
|
|
token.json
|
|
*token.json
|
|
.cookies.json
|
|
google_cred/
|
|
*.pem
|
|
*.key
|
|
# model weights / large artifacts
|
|
*.onnx
|
|
*.pt
|
|
*.pth
|
|
*.ckpt
|
|
*.safetensors
|
|
# os cruft
|
|
.DS_Store
|
|
Thumbs.db
|
|
# editor / agent local state
|
|
.claude/settings.local.json
|
|
.claude/settings.local.json.tmp.* |