From d9de5b80f8d11ebeaa2c2259046b3db05e902318 Mon Sep 17 00:00:00 2001 From: xdustinface Date: Sun, 28 Dec 2025 11:04:53 +0100 Subject: [PATCH] chore: add `.gitattributes` to enforce LF line endings This fixes the `mixed line ending` check for Windows in the `pre-commit` step in #253. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..d18bf85f0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Enforce LF line endings for all text files +* text=auto eol=lf