From c4cbb3106e882c4d0889ccb6407ad50cb08a6200 Mon Sep 17 00:00:00 2001 From: Forrest Li Date: Wed, 26 Feb 2020 11:54:20 -0500 Subject: [PATCH] chore: Enforce LF line endings in the repo --- .gitattributes | 1 + prettier.config.js | 1 + 2 files changed, 2 insertions(+) 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/prettier.config.js b/prettier.config.js index f12ed4a..e48a4e4 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -3,4 +3,5 @@ module.exports = { singleQuote: true, trailingComma: 'es5', arrowParens: 'always', + endOfLine: 'lf', };