-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
38 lines (33 loc) · 888 Bytes
/
.gitattributes
File metadata and controls
38 lines (33 loc) · 888 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
# ── Line ending normalization ──────────────────────────────────────────────────
# Store all text files with LF in the repo; checkout behavior depends on core.autocrlf.
* text=auto
# Markdown and docs — always LF (prevents CRLF warnings on Windows with autocrlf=true)
*.md text eol=lf
*.txt text eol=lf
*.toml text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
# Python — always LF
*.py text eol=lf
# HTML/CSS/JS — always LF
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
# Shell scripts — always LF
*.sh text eol=lf
# Binary files — no line ending conversion
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.db binary
*.sqlite binary
*.pyc binary
*.pyd binary
*.exe binary
*.dll binary
*.zip binary
*.gz binary
*.tar binary