-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (35 loc) · 1.05 KB
/
Copy path.gitattributes
File metadata and controls
40 lines (35 loc) · 1.05 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
# Normalize line endings: store LF in the repo, check out native on Windows.
* text=auto eol=lf
# Explicit text types (kept LF everywhere to match .editorconfig / Prettier).
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.json text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.css text eol=lf
*.html text eol=lf
# Shell / launcher scripts must stay LF and be diffable.
*.sh text eol=lf
*.command text eol=lf
# Generated / vendored: collapse diffs and exclude from language stats.
package-lock.json linguist-generated -diff
apps/frontend/src/types/generated.ts linguist-generated -diff
# Docs vault is documentation, not code (cleaner language breakdown).
docs/** linguist-documentation
# Binary assets — never line-ending-munged, never text-diffed.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.icns binary
*.dmg binary
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
*.pdf binary