forked from microsoft/aspire.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
29 lines (25 loc) · 806 Bytes
/
.gitattributes
File metadata and controls
29 lines (25 loc) · 806 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
# Auto-detect text files and normalize line endings to LF in the repo.
# On checkout, Git applies line endings based on user config (e.g. core.autocrlf/core.eol) and any eol= attributes.
* text=auto
# Force LF for files that must have it (e.g. shell scripts, lockfiles)
*.sh text eol=lf
*.ps1 text eol=lf
pnpm-lock.yaml text eol=lf
# Explicitly mark binary files to avoid corruption
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.pdf binary
*.zip binary
*.gz binary
*.tar binary
*.exe binary
*.dll binary
*.so binary
# Generated data files - use 'ours' merge strategy to avoid conflicts
# These files are regenerated at build time, so merge conflicts don't matter
src/frontend/src/data/*.json merge=ours
.github/workflows/*.lock.yml linguist-generated=true merge=ours