From f470664907f43889c0fc3883402cb71ae5a3f176 Mon Sep 17 00:00:00 2001 From: Coury Ditch Date: Sat, 5 Feb 2022 18:06:54 -0700 Subject: [PATCH] Ensure new lines are mac friendly w/ LF instead of CRLF. --- .gitattributes | 1 + tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..cbdcbbc --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.js text eol=lf diff --git a/tsconfig.json b/tsconfig.json index bc2fd05..6212f2f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,8 @@ "noFallthroughCasesInSwitch": true, "moduleResolution": "node", "baseUrl": "./", - "esModuleInterop": true + "esModuleInterop": true, + "newLine": "lf" }, "include": [ "src"