Spaces:
Sleeping
Sleeping
Update .gitattributes
Browse files- .gitattributes +57 -35
.gitattributes
CHANGED
|
@@ -1,35 +1,57 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
*
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
*.
|
| 10 |
-
*.
|
| 11 |
-
*.
|
| 12 |
-
*.
|
| 13 |
-
*.
|
| 14 |
-
*.
|
| 15 |
-
*.
|
| 16 |
-
*.
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
*.
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
*.
|
| 29 |
-
*.
|
| 30 |
-
*.
|
| 31 |
-
*.
|
| 32 |
-
*.
|
| 33 |
-
*.
|
| 34 |
-
*.
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# =========================
|
| 2 |
+
# Text normalization
|
| 3 |
+
# =========================
|
| 4 |
+
* text=auto eol=lf
|
| 5 |
+
|
| 6 |
+
# =========================
|
| 7 |
+
# Source code
|
| 8 |
+
# =========================
|
| 9 |
+
*.py text diff=python
|
| 10 |
+
*.md text diff=markdown
|
| 11 |
+
*.yaml text
|
| 12 |
+
*.yml text
|
| 13 |
+
*.json text
|
| 14 |
+
*.txt text
|
| 15 |
+
*.toml text
|
| 16 |
+
*.ini text
|
| 17 |
+
|
| 18 |
+
# =========================
|
| 19 |
+
# Config / infra files
|
| 20 |
+
# =========================
|
| 21 |
+
Dockerfile text
|
| 22 |
+
Makefile text
|
| 23 |
+
*.sh text eol=lf
|
| 24 |
+
|
| 25 |
+
# =========================
|
| 26 |
+
# Binary / generated artifacts
|
| 27 |
+
# =========================
|
| 28 |
+
*.png binary
|
| 29 |
+
*.jpg binary
|
| 30 |
+
*.jpeg binary
|
| 31 |
+
*.gif binary
|
| 32 |
+
*.webp binary
|
| 33 |
+
*.svg text
|
| 34 |
+
*.pdf binary
|
| 35 |
+
|
| 36 |
+
# =========================
|
| 37 |
+
# Data artifacts
|
| 38 |
+
# =========================
|
| 39 |
+
*.csv text
|
| 40 |
+
*.parquet binary
|
| 41 |
+
*.arrow binary
|
| 42 |
+
*.pkl binary
|
| 43 |
+
*.joblib binary
|
| 44 |
+
|
| 45 |
+
# =========================
|
| 46 |
+
# Ignore diffs for auto-generated outputs
|
| 47 |
+
# =========================
|
| 48 |
+
artifacts/* linguist-generated
|
| 49 |
+
__pycache__/* linguist-generated
|
| 50 |
+
.cache/* linguist-generated
|
| 51 |
+
|
| 52 |
+
# =========================
|
| 53 |
+
# YAML cards (important!)
|
| 54 |
+
# Keep them text + diffable
|
| 55 |
+
# =========================
|
| 56 |
+
templates/*.yaml text
|
| 57 |
+
templates/*.yml text
|