chore: harden .gitignore — .claude/, secrets, session artifacts; remove duplicate lines
Browse files- .gitignore +17 -2
.gitignore
CHANGED
|
@@ -32,11 +32,26 @@ eval/survey_sources_summary.txt
|
|
| 32 |
|
| 33 |
# Misc
|
| 34 |
.DS_Store
|
|
|
|
| 35 |
*.log
|
|
|
|
| 36 |
.pytest_cache/
|
| 37 |
.mypy_cache/
|
| 38 |
docs/*.png
|
| 39 |
docs/*.json
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
# Misc
|
| 34 |
.DS_Store
|
| 35 |
+
Thumbs.db
|
| 36 |
*.log
|
| 37 |
+
.ipynb_checkpoints/
|
| 38 |
.pytest_cache/
|
| 39 |
.mypy_cache/
|
| 40 |
docs/*.png
|
| 41 |
docs/*.json
|
| 42 |
|
| 43 |
+
# Claude Code
|
| 44 |
+
.claude/
|
| 45 |
+
|
| 46 |
+
# Secrets
|
| 47 |
+
*.pem
|
| 48 |
+
*.key
|
| 49 |
+
credentials*.json
|
| 50 |
+
service-account*.json
|
| 51 |
+
|
| 52 |
+
# Session artifacts
|
| 53 |
+
CHANGES_APPLIED.md
|
| 54 |
+
CLEANUP_DONE_*.md
|
| 55 |
+
*_VERIFICATION.md
|
| 56 |
+
*_RECON.md
|
| 57 |
+
ROTATION_CHECKLIST.md
|