From 5c1a22b4e834472c97403cd696301980847726a7 Mon Sep 17 00:00:00 2001 From: Dom Webber Date: Fri, 29 Sep 2023 11:56:29 +0100 Subject: [PATCH] chore: Add enforced LF file endings --- .gitattributes | 1 + .prettierrc | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.prettierrc b/.prettierrc index 681f0e4..66e35a0 100644 --- a/.prettierrc +++ b/.prettierrc @@ -2,5 +2,6 @@ "trailingComma": "all", "singleQuote": false, "quoteProps": "consistent", - "tabWidth": 2 + "tabWidth": 2, + "endOfLine": "lf" }