-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
59 lines (48 loc) · 840 Bytes
/
Copy path.gitattributes
File metadata and controls
59 lines (48 loc) · 840 Bytes
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
# Auto-detect text files, normalize line endings to LF
* text=auto
# Source code
*.astro text
*.ts text
*.mjs text
*.js text
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.css text diff=css
# Config files
.editorconfig text
.gitattributes text
.gitignore text
tsconfig.json text linguist-language=JSON-with-Comments
# Lock files
pnpm-lock.yaml text eol=lf -diff
# Markdown
*.md text diff=markdown
*.mdx text diff=markdown
# Scripts
*.sh text eol=lf
*.ps1 text eol=crlf
# Documentation
LICENSE text
README* text
# Built output
dist/** -text
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
*.webp binary
# Fonts
*.ttf binary
*.woff binary
*.woff2 binary
# Archives
*.zip binary
*.tar.gz binary
*.7z binary
# Export exclusions
.gitattributes export-ignore
.gitignore export-ignore