-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitattributes
More file actions
65 lines (55 loc) · 976 Bytes
/
.gitattributes
File metadata and controls
65 lines (55 loc) · 976 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
57
58
59
60
61
62
63
64
65
# Auto detect text files and perform LF normalization
* text=auto
# Source code
*.go text eol=lf
*.mod text eol=lf
*.sum text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
# Configuration
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.toml text eol=lf
# Scripts
*.sh text eol=lf
*.bash text eol=lf
*.ps1 text eol=crlf
*.bat text eol=crlf
*.cmd text eol=crlf
# Makefiles
Makefile text eol=lf
*.mk text eol=lf
# Git files
.gitattributes text eol=lf
.gitignore text eol=lf
.gitkeep text eol=lf
# GitHub files
.github/** text eol=lf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.exe binary
# Go vendored dependencies
vendor/** linguist-vendored
vendor/** -diff
# Generated files
*.pb.go linguist-generated
*_generated.go linguist-generated