From ad6950c1318a98df094a7030a6df53eb10391c11 Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Tue, 4 Jun 2024 15:47:49 -0400 Subject: [PATCH] chore(repo): add git attributes configuration add a .gitattributes configuration file to the repo. this will allow users of unix and windows machines to be able to commit to the repo without worrying about line endings. previously, running the `lint` npm task in the core directory would cause the line endings to change locally. with this change, line endings should not change --- core/.gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 core/.gitattributes diff --git a/core/.gitattributes b/core/.gitattributes new file mode 100644 index 00000000000..6313b56c578 --- /dev/null +++ b/core/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf