forked from IPXO/asn-zone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
48 lines (41 loc) · 922 Bytes
/
.gitattributes
File metadata and controls
48 lines (41 loc) · 922 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
39
40
41
42
43
44
45
46
47
48
# Normalize line endings (LF everywhere)
* text=auto eol=lf
# Binary assets (no diffs)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.pdf binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
# SVGs stay text for diffs/blame
*.svg text
# Improve diffs for lockfiles
package-lock.json -diff
pnpm-lock.yaml -diff
yarn.lock -diff
# TypeScript/JSX with better diffs
*.tsx text eol=lf diff=ts
*.ts text eol=lf diff=ts
*.jsx text eol=lf
*.js text eol=lf
# Configs, docs, metadata
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.md text eol=lf
*.mdx text eol=lf
*.txt text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.pcss text eol=lf
# Mark generated outputs as linguist-generated (GitHub UI only)
apps/web/.next/** linguist-generated
out/** linguist-generated
# Keep patch formatting stable
*.patch text eol=lf
*.diff text eol=lf