forked from Poisonite/MakeMKV-Auto-Rip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
35 lines (29 loc) · 777 Bytes
/
.gitattributes
File metadata and controls
35 lines (29 loc) · 777 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
# Git line ending configuration for MakeMKV Auto Rip
# Ensures consistent line endings across platforms
# Default behavior: normalize line endings to LF on checkin,
# convert to native line endings on checkout
* text=auto
# Force LF line endings for shell scripts (critical for Docker)
*.sh text eol=lf
docker-entrypoint.sh text eol=lf
# Force LF for configuration files
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
# Force LF for source code files
*.js text eol=lf
*.ts text eol=lf
*.css text eol=lf
*.html text eol=lf
*.md text eol=lf
# Force LF for Docker files
Dockerfile text eol=lf
docker-compose.yaml text eol=lf
.dockerignore text eol=lf
# Binary files (don't normalize)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.node binary