forked from kortix-ai/suna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
49 lines (41 loc) · 900 Bytes
/
Copy path.gitattributes
File metadata and controls
49 lines (41 loc) · 900 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
# Normalize line endings for all text files
* text=auto
# Force LF line endings for specific file types (critical for Gemini CLI compatibility)
*.md text eol=lf
*.txt text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.toml text eol=lf
# Shell scripts should always be LF
*.sh text eol=lf
*.bash text eol=lf
# Python files
*.py text eol=lf
# TypeScript/JavaScript
*.ts text eol=lf
*.tsx text eol=lf
*.js text eol=lf
*.jsx text eol=lf
# CSS
*.css text eol=lf
*.scss text eol=lf
# HTML
*.html text eol=lf
# Configuration files
.gitattributes text eol=lf
.gitignore text eol=lf
.editorconfig text eol=lf
Dockerfile text eol=lf
docker-compose*.yml text eol=lf
# Binary files (don't touch these)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.pdf binary