-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy path.gitattributes
More file actions
44 lines (36 loc) · 853 Bytes
/
.gitattributes
File metadata and controls
44 lines (36 loc) · 853 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
# Set the default behavior, to ignore text end of line character - https://git-scm.com/docs/gitattributes
# Treat all files as text by default unless overridden
* text=auto eol=lf
# Source code — TypeScript / JS
*.ts text
*.tsx text
*.js text
# JSON data / config files / CSV
*.json text
*.geojson text
*.csv text
# Markup / documentation files
*.html text
*.md text
*.txt text
# SVG (XML-based image, diffable)
*.svg text
# Shell scripts & config
*.sh text
*.yml text
*.yaml text
*.env text
# Binary assets — truly binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
# Fonts (binary)
*.ttf binary
*.otf binary
# Archives / compressed files
*.zip binary
*.tar binary
*.gz binary
*.7z binary