forked from diegofornalha/solana-agent-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
88 lines (74 loc) · 1.32 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
79
80
81
82
83
84
85
86
87
88
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# TypeScript files
*.ts text diff=typescript
*.tsx text diff=typescript
*.d.ts text diff=typescript
# JavaScript files
*.js text diff=javascript
*.jsx text diff=javascript
*.cjs text diff=javascript
*.mjs text diff=javascript
# JSON files
*.json text
*.jsonc text
*.json5 text
# YAML files
*.yml text
*.yaml text
# Markdown files
*.md text diff=markdown
*.mdx text diff=markdown
# Environment files
*.env text
.env.* text
.envrc text
# Configuration files
*.toml text
*.ini text
*.conf text
*.config text
*.lock text
.editorconfig text
.prettierrc text
.eslintrc text
tsconfig.json text
package.json text
pnpm-lock.yaml text
# Documentation
*.txt text
*.pdf binary
*.doc binary
*.docx binary
*.rtf binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Fonts
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
# Scripts
*.sh text eol=lf
*.bash text eol=lf
*.fish text eol=lf
*.zsh text eol=lf
# Git files
.gitattributes text export-ignore
.gitignore text export-ignore
.gitkeep text export-ignore
.gitmodules text export-ignore
# IDE files
.vscode/* text
.idea/* text
*.sublime-project text
*.sublime-workspace text
# Exclude files from exporting
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore