From 427f7cbfec8a81fdc7083e0716d1fe9ab99380da Mon Sep 17 00:00:00 2001
From: modmuss <modmuss50@gmail.com>
Date: Tue, 10 Sep 2024 13:17:22 +0100
Subject: [PATCH] Use unix line endings on all files (#4079)

(cherry picked from commit f83d9a4a4db3893677e9b26e7288496af3b9d033)
---
 .gitattributes | 5 ++---
 build.gradle   | 2 ++
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index 60baa1ddb..0f09d3260 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,3 +1,2 @@
-*.java text eol=lf
-*.json text eol=lf
-*.bat text eol=crlf
+* text=auto eol=lf
+*.bat text eol=crlf
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
index 414c53e82..41c0e5aaa 100644
--- a/build.gradle
+++ b/build.gradle
@@ -271,6 +271,8 @@ allprojects {
 	}
 
 	spotless {
+		lineEndings = com.diffplug.spotless.LineEnding.UNIX
+
 		java {
 			licenseHeaderFile(rootProject.file("HEADER"))
 			removeUnusedImports()