This repository has been archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
78 lines (68 loc) · 1.96 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
74
75
76
77
78
* text eol=lf
# Documents
content/* linguist-documentation=true
*.txt linguist-documentation=false linguist-detectable=true
*.pdf diff=astextplain
*.PDF diff=astextplain
# Serialisation
*.csv text
*.tsv text
*.json text
*.toml text
*.xml text
*.yaml text
*.yml text
# Text files where line endings should be preserved
*.patch -text
# Scripts
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
# These are explicitly windows files and should use crlf
#*.bat text eol=crlf
#*.cmd text eol=crlf
#*.ps1 text eol=crlf
# Vendors
dist/* linguist-generated=true
build/* linguist-generated=true
public/* linguist-generated=true
vendor/* linguist-vendored=true
static/*.html linguist-vendored=true
# pkgs
package-lock.json binary
yarn.lock -diff
*.lock binary
.yarn/* linguist-vendored
.pnp.js linguist-vendored
# Coverge
**/*.js.snap export-ignore
**/__image_snapshots__/*.* binary
**/__image_snapshots__/*.* filter=lfs diff=lfs merge=lfs -text
# Graphics
*.png filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.riv filter=lfs diff=lfs merge=lfs -text
# SVG treated as an asset (binary) by default.
*.svg text
# Fonts
*.ttf filter=lfs diff=lfs merge=lfs -text
*.eot filter=lfs diff=lfs merge=lfs -text
*.otf filter=lfs diff=lfs merge=lfs -text
*.woff filter=lfs diff=lfs merge=lfs -text
*.woff2 filter=lfs diff=lfs merge=lfs -text
# Archives
*.gz binary
*.tar binary
*.tgz binary
# Required to stop YN0018 - CACHE_CHECKSUM_MISMATCH
*.zip binary
#
# Exclude files from exporting
#
.editorconfig export-ignore
.vscode export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore