From b7ef20d6fdac990f9a69c8f7f68153158d6a4fd1 Mon Sep 17 00:00:00 2001 From: Sylvie Crowe <107814465+oneirocosm@users.noreply.github.com> Date: Tue, 1 Oct 2024 12:54:15 -0700 Subject: [PATCH] Windows Line Endings (#923) For some reason, the original version of this started working again. I'm merging it to undo a small part of a recent change. --- .gitattributes | 2 +- prettier.config.cjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 07764a78d..212566614 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -* text eol=lf \ No newline at end of file +* text=auto \ No newline at end of file diff --git a/prettier.config.cjs b/prettier.config.cjs index 3cfb47d5f..5f4fd84dd 100644 --- a/prettier.config.cjs +++ b/prettier.config.cjs @@ -3,7 +3,7 @@ module.exports = { plugins: ["prettier-plugin-jsdoc", "prettier-plugin-organize-imports"], printWidth: 120, trailingComma: "es5", - useTabs: false, + useTabs: false, jsdocVerticalAlignment: true, jsdocSeparateReturnsFromParam: true, jsdocSeparateTagGroups: true,