Update .gitignore
Browse files- .gitignore +26 -0
.gitignore
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Local-only; never pushed to the Hugging Face dataset repo.
|
| 2 |
+
|
| 3 |
+
# Claude Code local instructions
|
| 4 |
+
CLAUDE.md
|
| 5 |
+
|
| 6 |
+
# macOS artifacts
|
| 7 |
+
.DS_Store
|
| 8 |
+
|
| 9 |
+
# SQLite write-ahead and shared-memory side files
|
| 10 |
+
*.db-journal
|
| 11 |
+
*.db-wal
|
| 12 |
+
*.db-shm
|
| 13 |
+
|
| 14 |
+
# Python local development artifacts (if any)
|
| 15 |
+
.venv/
|
| 16 |
+
venv/
|
| 17 |
+
__pycache__/
|
| 18 |
+
*.pyc
|
| 19 |
+
*.pyo
|
| 20 |
+
|
| 21 |
+
# AI tooling / IDE artifacts
|
| 22 |
+
.claude/
|
| 23 |
+
.codeflicker/
|
| 24 |
+
.codex/
|
| 25 |
+
.idea/
|
| 26 |
+
.vscode/
|