From ddeb9bc33272db1e34107fd286098bb1e9896e51 Mon Sep 17 00:00:00 2001 From: Simone Avogadro Date: Mon, 2 Mar 2026 11:36:38 +0100 Subject: [PATCH] ADDED: .gitattributes for better WSL/Windows cooperation --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..60a69c8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# Normalize all text files to LF in the repository +* text=auto eol=lf + +# Shell scripts — always LF (required for bash execution) +*.sh text eol=lf + +# Markdown and JSON — always LF +*.md text eol=lf +*.json text eol=lf