Spaces:
Running
Running
Use LFS for dataset files
Browse files- .gitattributes +9 -7
.gitattributes
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
# Auto detect text files and perform LF normalization
|
2 |
# https://pablorsk.medium.com/be-a-git-ninja-the-gitattributes-file-e58c07c9e915
|
3 |
* text=auto
|
4 |
-
*.zip binary
|
5 |
|
6 |
# Hide from GitHub's language detection
|
7 |
-
|
|
|
8 |
|
9 |
# Remove assets from github statistics
|
10 |
-
|
|
|
11 |
|
12 |
# Set the language for these files to ensure GitHub doesn't show the comments as errors
|
13 |
-
.vscode/*.json
|
14 |
|
15 |
# Do not try and merge these files
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
1 |
# Auto detect text files and perform LF normalization
|
2 |
# https://pablorsk.medium.com/be-a-git-ninja-the-gitattributes-file-e58c07c9e915
|
3 |
* text=auto
|
|
|
4 |
|
5 |
# Hide from GitHub's language detection
|
6 |
+
*.yaml linguist-documentation
|
7 |
+
*.toml linguist-documentation
|
8 |
|
9 |
# Remove assets from github statistics
|
10 |
+
*.yaml linguist-vendored
|
11 |
+
*.toml linguist-vendored
|
12 |
|
13 |
# Set the language for these files to ensure GitHub doesn't show the comments as errors
|
14 |
+
.vscode/*.json linguist-language=JSON5
|
15 |
|
16 |
# Do not try and merge these files
|
17 |
+
poetry.lock -diff
|
18 |
+
|
19 |
+
# LFS
|
20 |
+
data/** filter=lfs diff=lfs merge=lfs -text
|