From 11531f8228827edb9b4d9711fece9977067d655b Mon Sep 17 00:00:00 2001 From: ThisGitHubUsernameWasAvailable <89264810+ThisGitHubUsernameWasAvailable@users.noreply.github.com> Date: Tue, 8 Feb 2022 18:01:34 +0300 Subject: [PATCH] Fix .gitattributes consistency with .editorconfig `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 510d9961f10..65129b46a1a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,5 @@ * text=auto +* text eol=lf *.blade.php diff=html *.css diff=css