From 0c067c4e6f36d741edf7c88de847585fefd54b64 Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Sun, 3 Nov 2024 00:44:34 +0100 Subject: [PATCH] feat: use consistent line ending (#1407) --- .gitattributes | 1 + tooling/prettier/index.mjs | 1 + 2 files changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..07764a78d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text eol=lf \ No newline at end of file diff --git a/tooling/prettier/index.mjs b/tooling/prettier/index.mjs index 06a15ac4c..5a82b1ec7 100644 --- a/tooling/prettier/index.mjs +++ b/tooling/prettier/index.mjs @@ -26,6 +26,7 @@ const config = { }, }, ], + endOfLine: "lf", }; export default config;