-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
33 lines (30 loc) · 757 Bytes
/
Copy path.gitattributes
File metadata and controls
33 lines (30 loc) · 757 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
# Normalize line endings: keep LF in the repo for all text/source files,
# regardless of the contributor's OS. Avoids CRLF churn on Windows.
* text=auto eol=lf
# Explicit LF for source and config we control.
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
*.json text eol=lf
*.jsonc text eol=lf
*.css text eol=lf
*.html text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
# Lockfile: LF, and mark generated so diffs collapse.
pnpm-lock.yaml text eol=lf linguist-generated=true
# Binary assets — never touch.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.svg text eol=lf