Spaces:
Sleeping
Sleeping
Update .gitattributes
Browse files- .gitattributes +29 -28
.gitattributes
CHANGED
|
@@ -1,35 +1,36 @@
|
|
| 1 |
-
#
|
| 2 |
* text=auto eol=lf
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
*.
|
| 6 |
-
*.txt text eol=lf
|
| 7 |
-
*.json text eol=lf
|
| 8 |
-
*.csv text eol=lf
|
| 9 |
-
*.yml text eol=lf
|
| 10 |
-
*.yaml text eol=lf
|
| 11 |
-
*.py text eol=lf
|
| 12 |
-
*.js text eol=lf
|
| 13 |
-
*.css text eol=lf
|
| 14 |
-
*.html text eol=lf
|
| 15 |
-
*.sh text eol=lf
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
*.
|
| 19 |
-
*.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
*.jpeg binary
|
| 21 |
-
*.gif binary
|
| 22 |
*.webp binary
|
| 23 |
-
*.
|
| 24 |
-
*.mp4 binary
|
| 25 |
-
*.mov binary
|
| 26 |
-
*.pdf binary
|
| 27 |
|
| 28 |
-
#
|
| 29 |
-
*.
|
|
|
|
| 30 |
|
| 31 |
-
#
|
| 32 |
-
*.zip
|
| 33 |
-
*.tar
|
| 34 |
-
*.gz
|
| 35 |
-
*.7z binary
|
|
|
|
| 1 |
+
# Use LF line endings everywhere
|
| 2 |
* text=auto eol=lf
|
| 3 |
|
| 4 |
+
# Treat Python files as text
|
| 5 |
+
*.py text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
+
# Markdown
|
| 8 |
+
*.md text
|
| 9 |
+
*.rst text
|
| 10 |
+
|
| 11 |
+
# JSON / configs
|
| 12 |
+
*.json text
|
| 13 |
+
*.jsonl text
|
| 14 |
+
*.yaml text
|
| 15 |
+
*.yml text
|
| 16 |
+
|
| 17 |
+
# Ignore diffs for generated artifacts if added later
|
| 18 |
+
*.parquet binary
|
| 19 |
+
*.arrow binary
|
| 20 |
+
*.bin binary
|
| 21 |
+
|
| 22 |
+
# Images
|
| 23 |
+
*.png binary
|
| 24 |
+
*.jpg binary
|
| 25 |
*.jpeg binary
|
|
|
|
| 26 |
*.webp binary
|
| 27 |
+
*.svg text
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
# Fonts
|
| 30 |
+
*.ttf binary
|
| 31 |
+
*.otf binary
|
| 32 |
|
| 33 |
+
# Archives
|
| 34 |
+
*.zip binary
|
| 35 |
+
*.tar binary
|
| 36 |
+
*.gz binary
|
|
|