From 79c85571389679383d7f51a5e8636ea467193334 Mon Sep 17 00:00:00 2001 From: UserMandhapati Date: Mon, 2 Feb 2026 08:52:56 +0100 Subject: [PATCH] chore: add gitattributes file Add .gitattributes to ensure consistent line endings (LF) for shell scripts and documentation across different operating systems. --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..f2c73901d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# Auto-detect text files and perform LF normalization +* text=auto + +# Custom for shell scripts +*.sh text eol=lf + +# Documentation +*.md text +*.json text