-
Notifications
You must be signed in to change notification settings - Fork 45
/
.gitattributes
102 lines (92 loc) · 1.53 KB
/
.gitattributes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Details per file setting:
# text These files should be normalized (i.e. convert CRLF to LF).
# binary These files are binary and should be left untouched.
# Auto detect text files and perform LF normalization
* text=auto
# The above will handle all files NOT found below
# SOURCE CODE
*.bat text eol=crlf
*.py text
*.sh text eol=lf
# COMPILED FILES
*.dll binary
*.dylib binary
*.exe binary
*.pyc binary
*.so binary
# DOCUMENTATION
*.md text
*.txt text
LICENSE text
# CONFIGS
.editorconfig text
.gitattributes text
.gitignore text
*.conf text
*.config text
*.json text
*.lock text
*.toml text
*.yaml text
*.yml text
# GRAPHICS
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.heic binary
*.ico binary
*.jpeg binary
*.jpg binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
*.svg text
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# AUDIO
*.aac binary
*.flac binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.mp4a binary
*.mpga binary
*.oga binary
*.ogg binary
*.wav binary
*.weba binary
# VIDEO
*.3g2 binary
*.3gp binary
*.asf binary
*.avi binary
*.f4v binary
*.fla binary
*.flv binary
*.m4v binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.qt binary
*.swf binary
*.webm binary
# ARCHIVES
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
# FONTS
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
*.woff2 binary