From 207a23e4a1267e65b268a1ee09afdbc5f5e1beea Mon Sep 17 00:00:00 2001 From: ThisGitHubUsernameWasAvailable <89264810+ThisGitHubUsernameWasAvailable@users.noreply.github.com> Date: Wed, 9 Feb 2022 17:55:45 +0300 Subject: [PATCH] Fix .gitattributes consistency with .editorconfig (#5802) `lf` EOL is defined in `.editorconfig` but missed in `.gitattributes`, so here is the fix. This little fix helps keep the EOL consistent across the project and ensures it doesn't get messed up by GitHub Desktop or any other GIT client. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 510d9961..65129b46 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,5 @@ * text=auto +* text eol=lf *.blade.php diff=html *.css diff=css