-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitattributes
37 lines (28 loc) · 983 Bytes
/
.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
### Git Line Endings ###############################################################################
# Set default behavior to automatically normalize line endings
* text=auto
# Documents
*.md text diff=markdown
*.mdx text diff=markdown
# Serialization
*.json text
*.toml text
*.xml text
*.yaml text
*.yml text
# Force batch scripts to always use CRLF line endings
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Force bash scripts to always use LF line endings
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
*.zsh text eol=lf
# Text files where line endings should be preserved
*.patch -text
### Exclude files from exporting ###################################################################
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
####################################################################################################