From 8943eef40d9920be02f3dfb44f6d4ce43cf8edbd Mon Sep 17 00:00:00 2001 From: Derick Montague Date: Mon, 8 Mar 2021 16:48:02 -0600 Subject: Add .gitattributes file This file has a setting that assures that our end of line defaults to lf for all developers when cloning or checking out a branch. This is important for windows users. When they checkout, the eol is being set to CRLF which slows down the build and requires they run the lint command and stage every file in the application to keep linting from slowing down the build process. https://prettier.io/docs/en/options.html#end-of-line Signed-off-by: Derick Montague Change-Id: I700e5f1591437c60868ac7e81bd29d613ad868e9 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..94f480de --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf \ No newline at end of file -- cgit v1.2.3