-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
48 lines (37 loc) · 1.11 KB
/
.gitattributes
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
* text=auto
# Serialisation
*.json text diff=json
*.toml text
*.yaml text eol=lf diff linguist-detectable=true
*.yml text eol=lf diff linguist-detectable=true
# Git attributes
*.gitattributes text
.gitignore text
# Ignore files
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
# Linguist detection
*.xml text eol=lf diff linguist-detectable=true
*.md linguist-detectable=true
# Code files (JS, TS, JSX, TSX)
*.js text
*.ts text diff=typescript
*.jsx text
*.tsx text diff=typescript
# Markup files (HTML, XML)
*.html text
*.xml text eol=lf diff
# Image files (PNG, SVG, ICO, JPG)
*.png binary
*.svg binary
*.ico binary
*.jpg binary
*.jpeg binary
*.webp binary
# Text files
*.txt text
# Stylesheets (CSS)
*.css text diff=css
# Dockerfile
Dockerfile text