From 4ea1083422d0830905df0b9459f374c4a7b517b0 Mon Sep 17 00:00:00 2001 From: Declan Smith Date: Thu, 9 Jul 2026 22:37:07 +1000 Subject: [PATCH] feat(gitattributes): add line ending rules for verified and received files Added `.gitattributes` file to enforce `LF` line endings for `*.verified.txt` and `*.received.txt` files. This ensures consistent line endings across environments. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4171414 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.verified.txt text eol=lf +*.received.txt text eol=lf