-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
54 lines (47 loc) · 1014 Bytes
/
.gitattributes
File metadata and controls
54 lines (47 loc) · 1014 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
# Git attributes to handle cross-platform compatibility
# Ensure consistent line endings across platforms
# Text files
*.md text eol=lf
*.txt text eol=lf
*.json text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.css text eol=lf
*.html text eol=lf
*.svg text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.conf text eol=lf
*.config text eol=lf
# Shell scripts should use LF
*.sh text eol=lf
*.bash text eol=lf
# Python files
*.py text eol=lf
# Configuration files
.gitignore text eol=lf
.gitattributes text eol=lf
.npmrc text eol=lf
.nvmrc text eol=lf
Dockerfile* text eol=lf
docker-compose*.yml text eol=lf
# Windows-specific files
*.bat text eol=crlf
*.cmd text eol=crlf
# Binary files (don't process as text)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.zip binary
*.tar.gz binary
*.node binary
# Exclude problematic files with ANSI codes from Windows builds
.claude/hooks/*.sh filter=strip-ansi