-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitattributes
More file actions
56 lines (46 loc) · 774 Bytes
/
Copy path.gitattributes
File metadata and controls
56 lines (46 loc) · 774 Bytes
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
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# Go source files
*.go text diff=golang
# Shell scripts must use LF
*.sh text eol=lf
# Windows scripts must use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Documentation
*.md text diff=markdown
*.txt text
LICENSE text
# Config files
*.json text
*.yaml text
*.yml text
*.toml text
*.xml text
# Web assets
*.html text diff=html
*.css text diff=css
*.js text
*.ts text
*.tsx text
*.jsx text
# Images (binary)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Archives (binary)
*.zip binary
*.tar.gz binary
*.tgz binary
# Compiled / binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.wasm binary
# Go module files
go.sum text -diff