-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
111 lines (96 loc) · 2.79 KB
/
.gitattributes
File metadata and controls
111 lines (96 loc) · 2.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Auto normalize line endings
* text=auto encoding=UTF-8 eol=lf
# Common configuration files
*.editorconfig text
*.config text
.gitattributes text export-ignore
.gitignore text export-ignore
# Documentation
*.md text diff=markdown
*.txt text
LICENSE text
README text
# Serialization
*.json text
*.yml text
*.yaml text
*.xml text
*.toml text
# .NET source files
*.cs text diff=csharp
*.csx text diff=csharp
*.vb text
*.fs text
*.fsx text
# .NET project files
*.csproj text
*.vbproj text
*.fsproj text
*.dbproj text
*.sln text
*.slnx text
*.props text
*.targets text
*.ruleset text
*.config text
*.nuspec text
*.resx text
DotSettings text
# Web files
*.html text diff=html
*.css text diff=css
*.scss text
*.sass text
*.js text
*.jsx text
*.ts text
*.tsx text
*.vue text
*.map text -diff
# Docker
Dockerfile text
*.dockerfile text
.dockerignore text export-ignore
compose.yaml text
compose.yml text
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
*.ps1 text eol=crlf
*.bat text eol=crlf
*.cmd text eol=crlf
# Package manager files
package.json text eol=lf
package-lock.json text eol=lf -diff
yarn.lock text -diff
pnpm-lock.yaml text eol=lf -diff
# Binary files
*.dll binary
*.exe binary
*.so binary
*.dylib binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
*.webp binary
# Fonts
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.otf binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# Documents
*.pdf binary
# Other special files
CONTRIBUTORS.md merge=union
*.log text -diff