-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
73 lines (69 loc) · 1.35 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
67
68
69
70
71
72
73
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# Source code
## Python
*.py text diff=python
## R
*.Rdata binary
*.RData binary
*.rda binary
*.rdb binary
*.rds binary
*.Rd text
*.Rdx binary
*.Rmd text
*.[Rr] text
*.Rproj text
*.[Rr]md linguist-detectable
## Windows scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
## Unix-like scripts
*.bash text eol=lf diff=bash
*.sh text eol=lf diff=bash
*.zsh text eol=lf diff=bash
## Serialization and configuration
*.json text eol=lf
*.toml text eol=lf
*.xml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitconfig text eol=lf
package.json text eol=lf
package-lock.json text linguist-vendored
tsconfig.json linguist-language=JSON-with-Comments
yarn.lock linguist-vendored
# Docs
## Misc
*.md text eol=lf diff=markdown
*.mdx text eol=lf diff=markdown
*.ipynb text eol=lf
*.pdf -diff
## tex
*.bibtex text diff=bibtex
*.tex text diff=tex
## Data
*.csv text
*.tsv text
## Simple text
*.txt text
*LICENSE* text
# Denote all files that are truly binary and should not be modified.
# Older git versions try to fix line endings on images and fonts, this prevents it.
## SVG
*.svg text
## Images
*.png binary
*.gif binary
*.ico binary
*.wbmp binary
*.webp binary
*.jpg binary
*.jpeg binary
## Fonts
*.ttf binary
*.woff binary
*.woff2 binary