-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
29 lines (27 loc) · 785 Bytes
/
.gitattributes
File metadata and controls
29 lines (27 loc) · 785 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
# Normalize line endings to LF for all text files on checkout,
# regardless of the contributor's OS / git core.autocrlf setting.
# This avoids spurious "modified" files when opening the repo in
# the Linux devcontainer from a Windows host.
* text=auto eol=lf
# Explicit text files
*.go text eol=lf
*.mod text eol=lf
*.sum text eol=lf
*.tf text eol=lf
*.tfvars text eol=lf
*.hcl text eol=lf
*.json text eol=lf
*.md text eol=lf
*.sh text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
Makefile text eol=lf
GNUmakefile text eol=lf
# Known binary types — never touch
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.zip binary
*.gz binary