From 5289b4bf51a4910b4a94005bb684da39de2b2733 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 17 Sep 2023 13:01:55 -0500 Subject: [PATCH] Add gitattributes for luau --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..cf332f3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +* text=auto + +# Temporarily highlight luau as normal lua files +# until we get native linguist support for Luau +*.luau linguist-language=Lua + +# Ensure all lua files use LF +*.lua eol=lf +*.luau eol=lf