From 6fed7394022f490e62556ca8c11ef6a458196a91 Mon Sep 17 00:00:00 2001 From: "Alex \"mcmonkey\" Goodwin" <4000772+mcmonkey4eva@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:03:38 -0700 Subject: [PATCH] add a git attributes file (#672) set all ts and vue scripts as LF on Windows as there are scripts (eg the prettier format script) that will break with windows format --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..bd4e75cee8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Default +* text=auto + +# Force TS to LF to make the unixy scripts not break on Windows +*.ts text eol=lf +*.vue text eol=lf