Spaces:
Runtime error
Runtime error
Update .gitattributes
Browse files- .gitattributes +29 -35
.gitattributes
CHANGED
@@ -1,35 +1,29 @@
|
|
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 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
-
*.xz 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
|
|
|
1 |
+
# Ensure consistent line endings across OS
|
2 |
+
* text=auto
|
3 |
+
|
4 |
+
# Handle Python files as text and mark for linguist
|
5 |
+
*.py text eol=lf
|
6 |
+
|
7 |
+
# Treat CSVs as text
|
8 |
+
*.csv text
|
9 |
+
|
10 |
+
# Streamlit config files
|
11 |
+
*.toml text
|
12 |
+
|
13 |
+
# Ignore Jupyter notebook outputs (if used later)
|
14 |
+
*.ipynb text
|
15 |
+
|
16 |
+
# Handle common image formats (if you use icons, etc.)
|
17 |
+
*.png binary
|
18 |
+
*.jpg binary
|
19 |
+
*.jpeg binary
|
20 |
+
*.gif binary
|
21 |
+
|
22 |
+
# Explicit UTF-8 encoding for text files
|
23 |
+
*.txt text working-tree-encoding=UTF-8
|
24 |
+
*.md text working-tree-encoding=UTF-8
|
25 |
+
|
26 |
+
# If you're deploying to platforms like Heroku or Streamlit Cloud
|
27 |
+
requirements.txt text
|
28 |
+
.gitattributes text
|
29 |
+
.gitignore text
|
|
|
|
|
|
|
|
|
|
|
|