-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
35 lines (32 loc) · 807 Bytes
/
.gitattributes
File metadata and controls
35 lines (32 loc) · 807 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
# Git line ending normalization for IT-Stack repos
# Ensures consistent LF line endings in the repository regardless of OS
* text=auto eol=lf
# Explicitly text files
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.sh text eol=lf
*.ps1 text eol=lf
*.py text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.go text eol=lf
*.java text eol=lf
*.xml text eol=lf
*.conf text eol=lf
*.env text eol=lf
Makefile text eol=lf
Dockerfile text eol=lf
# Binary files — no line ending conversion
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.tar.gz binary
*.key binary
*.p12 binary
*.pfx binary