From 2ff6726d1bbdcb6dc752387474ae09cff1abf347 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sat, 13 Dec 2025 21:30:17 -0500 Subject: [PATCH] Enforce LF endings for shell scripts --- .gitattributes | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..56dcac8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,18 @@ +# Ensure shell scripts always use LF line endings +*.sh text eol=lf + +# Go files should use LF +*.go text eol=lf + +# Markdown files should use LF +*.md text eol=lf + +# YAML files should use LF +*.yml text eol=lf +*.yaml text eol=lf + +# JSON files should use LF +*.json text eol=lf + +# Default behavior for text files +* text=auto