PeacebinfLow commited on
Commit
a3702ce
·
verified ·
1 Parent(s): 8d4d6a4

Update .gitattributes

Browse files
Files changed (1) hide show
  1. .gitattributes +29 -28
.gitattributes CHANGED
@@ -1,35 +1,36 @@
1
- # Treat all text as LF
2
  * text=auto eol=lf
3
 
4
- # Common text types
5
- *.md text eol=lf
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
- # Binary types (don't try to diff)
18
- *.png binary
19
- *.jpg binary
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  *.jpeg binary
21
- *.gif binary
22
  *.webp binary
23
- *.ico binary
24
- *.mp4 binary
25
- *.mov binary
26
- *.pdf binary
27
 
28
- # Parquet is binary
29
- *.parquet binary
 
30
 
31
- # Zip/Tar etc
32
- *.zip binary
33
- *.tar binary
34
- *.gz binary
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