Spaces:
Running
Running
Daryl Lim Claude Opus 4.6 commited on
Commit ·
b0280fe
1
Parent(s): 9cc9bfd
Add .ruff_cache/ to .gitignore
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- .gitignore +13 -4
.gitignore
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
.DS_Store
|
| 2 |
-
.ipynb_checkpoints
|
| 3 |
*.ipynb
|
| 4 |
-
gradio-env
|
| 5 |
-
__pycache__
|
| 6 |
-
*.pdf
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
.venv/
|
| 5 |
+
|
| 6 |
+
# Testing
|
| 7 |
+
.pytest_cache/
|
| 8 |
+
|
| 9 |
+
# Linting
|
| 10 |
+
.ruff_cache/
|
| 11 |
+
|
| 12 |
+
# IDE / OS
|
| 13 |
.DS_Store
|
| 14 |
+
.ipynb_checkpoints/
|
| 15 |
*.ipynb
|
|
|
|
|
|
|
|
|