Spaces:
Sleeping
Sleeping
Update .gitattributes
Browse files- .gitattributes +20 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,23 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
# Auto-detect text files and perform LF normalization
|
| 37 |
+
* text=auto
|
| 38 |
+
|
| 39 |
+
# Enforce LF for script and code files (Critical for Docker/Linux)
|
| 40 |
+
*.py text eol=lf
|
| 41 |
+
*.js text eol=lf
|
| 42 |
+
*.html text eol=lf
|
| 43 |
+
*.css text eol=lf
|
| 44 |
+
*.sh text eol=lf
|
| 45 |
+
Dockerfile text eol=lf
|
| 46 |
+
requirements.txt text eol=lf
|
| 47 |
+
|
| 48 |
+
# Binary files
|
| 49 |
+
*.png binary
|
| 50 |
+
*.jpg binary
|
| 51 |
+
*.jpeg binary
|
| 52 |
+
*.gif binary
|
| 53 |
+
*.ico binary
|
| 54 |
+
*.woff binary
|
| 55 |
+
*.woff2 binary
|