-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
85 lines (73 loc) · 2.21 KB
/
Copy path.gitattributes
File metadata and controls
85 lines (73 loc) · 2.21 KB
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
### Git Line Endings ###
# Automatically normalize line endings on check-in
* text=auto encoding=UTF-8
* text eol=lf
# Set file behavior to: treat as text
*.sln text eol=crlf
*.ps1 text
*.config text
*.cs text eol=lf diff=csharp
*.csproj text
*.json text
*.md text
*.props text
*.ps1 text
*.resx text
*.shproj text
*.targets text
*.txt text
*.xlf text
*.xml text
*.xaml text
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
# in Windows via a file share from Linux, the scripts will work.
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
# Force bash scripts to always use LF line endings so that if a repo is accessed
# in Unix via a file share from Windows, the scripts will work.
*.{sh,[sS][hH]} text eol=lf
.editorconfig text eol=lf working-tree-encoding=UTF-8
# https://github.com/VerifyTests/Verify?tab=readme-ov-file#text-file-settings
*.verified.txt text eol=lf working-tree-encoding=UTF-8
*.verified.xml text eol=lf working-tree-encoding=UTF-8
*.verified.json text eol=lf working-tree-encoding=UTF-8
# Binary
*.snk binary
### Git Large File System (LFS) / Binary ###
# To ues Git LFS: *.7z filter=lfs diff=lfs merge=lfs -text
# To ues binary: *.7z binary # (binary is a macro for -text -diff)
# Archives
*.7z binary
*.br binary
*.gz binary
*.tar binary
*.zip binary
# Documents
*.pdf binary
# Images
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.psd binary
*.webp binary
# Audio
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
# Fonts
*.woff2 binary
*.woff binary
*.ttf binary
*.eot binary
# Other
*.exe binary
*.pyc binary
# https://github.com/VerifyTests/Verify?tab=readme-ov-file#text-file-settings
*.verified.txt text eol=lf working-tree-encoding=UTF-8
*.verified.xml text eol=lf working-tree-encoding=UTF-8
*.verified.json text eol=lf working-tree-encoding=UTF-8