-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
70 lines (63 loc) · 1.18 KB
/
.gitattributes
File metadata and controls
70 lines (63 loc) · 1.18 KB
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
# Auto detect text files and perform LF normalization
* text=auto eol=lf
# Explicitly declare text files
*.py text
*.js text
*.jsx text
*.ts text
*.tsx text
*.json text
*.md text
*.yml text
*.yaml text
*.toml text
*.css text
*.scss text
*.html text
*.xml text
*.txt text
*.sh text
*.env text
*.example text
# Declare files that will always have LF line endings on checkout
*.sh text eol=lf
*.py text eol=lf
# Denote all files that are truly binary and should not be modified
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.zip binary
*.gz binary
*.tar binary
*.7z binary
# AI model files (binary)
*.pkl binary
*.h5 binary
*.pt binary
*.pth binary
*.onnx binary
*.safetensors binary
*.ckpt binary
*.bin binary
*.weights binary
# Jupyter notebooks
*.ipynb text eol=lf
# Linguist overrides for better GitHub statistics
*.html linguist-detectable=false
*.css linguist-detectable=false
frontend/public/* linguist-vendored
frontend/.next/* linguist-generated
backend/migrations/* linguist-generated
# Diff settings
*.py diff=python
*.js diff=javascript
*.ts diff=javascript
*.tsx diff=javascript
*.jsx diff=javascript