From b7c854be6103a8e0c8e71d5e436f1c6a2cb07c70 Mon Sep 17 00:00:00 2001 From: Gorlik <33355238+GorlikItsMe@users.noreply.github.com> Date: Mon, 12 Jan 2026 17:43:57 +0100 Subject: [PATCH 1/2] Add .hytale-downloader-credentials.json to .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6320cd2..820ce26 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -data \ No newline at end of file +data +.hytale-downloader-credentials.json From 53326b8e5b97e1356bb592ef4b3b03dd92772425 Mon Sep 17 00:00:00 2001 From: GorlikItsMe <33355238+GorlikItsMe@users.noreply.github.com> Date: Mon, 12 Jan 2026 17:50:01 +0100 Subject: [PATCH 2/2] Add .gitattributes to enforce LF line endings for shell scripts, Dockerfile, and docker-compose.yml --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c1abb31 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# Ensure shell scripts always use LF line endings +*.sh text eol=lf + +# Ensure Dockerfile uses LF +Dockerfile text eol=lf +docker-compose.yml text eol=lf + +# Default behavior for text files +* text=auto