-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
43 lines (36 loc) · 751 Bytes
/
.gitattributes
File metadata and controls
43 lines (36 loc) · 751 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
# GoResumeReview Git Attributes
#
# Configure line ending handling for cross-platform development
# Set default behavior to normalize line endings
* text=auto
# Force binary files to be treated as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.exe~ binary
# Handle Go files
*.go text=auto eol=lf
# Handle Vue/TypeScript files
*.vue text=auto eol=lf
*.ts text=auto eol=lf
*.js text=auto eol=lf
*.json text=auto eol=lf
# Markdown files
*.md text=auto eol=lf
*.markdown text=auto eol=lf
# Shell scripts
*.sh text=auto eol=lf
# Configure git to not try to merge binary files
*.png -merge
*.jpg -merge
*.jpeg -merge
*.gif -merge
*.ico -merge
*.pdf -merge