From 7fb534dde32b8311e9d3312504994a3289b4ead4 Mon Sep 17 00:00:00 2001 From: miketsai Date: Mon, 8 Jun 2026 16:19:16 +0800 Subject: [PATCH] chore: enforce LF line endings via .gitattributes --- .gitattributes | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c1a028c --- /dev/null +++ b/.gitattributes @@ -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