chore: enforce LF line endings via .gitattributes

This commit is contained in:
miketsai 2026-06-08 16:19:16 +08:00
parent a600f38767
commit 7fb534dde3

13
.gitattributes vendored Normal file
View File

@ -0,0 +1,13 @@
# Shell scripts must always use LF (Unix line endings)
*.sh text eol=lf
# Python scripts
*.py text eol=lf
# C/H source files
*.c text eol=lf
*.h text eol=lf
# Config files
*.ini text eol=lf
Dockerfile text eol=lf