-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
49 lines (38 loc) · 1.08 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
# Based on https://github.com/gitattributes/gitattributes
# Auto detect text files and perform LF normalization
* text=auto
# The above will handle all files NOT found below
# Tool configuration
## Git
.gitattributes text
.gitignore text
## Others
.editorconfig text
.env.example text
# Documents
## Plain text
*.md text
# Media
## Audio
*.flac binary
*.ogg binary
## Fonts
*.eot binary
*.ttf binary
*.woff binary
## Graphics
*.png binary
*.jpg binary
*.svg text
## Video
*.mkv binary
*.webm binary
# Data
*.json text
*.yaml text
*.toml text
secret/**/*.yaml text diff=sopsdiffer
# Code
*.ps1 text eol=crlf
*.sh text eol=lf
*.py text