-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
36 lines (30 loc) · 777 Bytes
/
.gitattributes
File metadata and controls
36 lines (30 loc) · 777 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
# Git attributes
# Details per file setting:
# text Normalized from CRLF to LF
# binary Left unchanged
# All files auto-detected as text
* text=auto eol=lf
# Source code
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.json text eol=lf
# Graphics
*.svg text eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
# Configuration files
*.env text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.lock text eol=lf
.gitattributes text eol=lf
*.*rc text eol=lf
*.*ignore text eol=lf
# etc
*.md text eol=lf
LICENSE text eol=lf