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
46 lines (41 loc) · 1.02 KB
/
Copy path.gitattributes
File metadata and controls
46 lines (41 loc) · 1.02 KB
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
44
45
46
# Enforce LF line endings for text files
# This forces Git to normalize line endings to LF on checkout.
# See https://git-scm.com/docs/gitattributes for details.
# Default: treat all files as text and check out with LF
* text=auto 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
# Common source/code/docs
*.md text eol=lf
*.mdx text eol=lf
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.cs text eol=lf
*.xml text eol=lf
*.py text eol=lf
*.sh text eol=lf
*.ps1 text eol=lf
# 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