-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
66 lines (43 loc) · 1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Auto detect text files and perform LF normalization
* text=auto
# .Net files
*.cs text diff=csharp
*.sln text eol=crlf
*.csproj text eol=crlf
# Documents
*.md text diff=markdown linguist-detectable
*.txt text
# Github files
codeowners text
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
# Linux script files
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
*zsh text eol=lf
# Windows script files
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Serialisation
*.json text
*.toml text
*.xml text
*.yaml text
*.yml text eol=crlf
# Web files
*.html text diff=html
# Web style files
*.css text diff=css
*.scss text diff=scss
*.sass text diff=sass
# Web script files
*.js text diff=javascript
*.ts text diff=typescript
# Exclude files form exporting
.gitattributes export-ignore
.gitignore export-ignore