From e8a4b0d12289519ca8c6d67b3734b2a99017a43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9ril?= Date: Thu, 3 Sep 2020 11:22:48 +0200 Subject: [PATCH] fix(prettier): allow platform line endings, not just Linux (#115) --- prettier.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/prettier.config.js b/prettier.config.js index a9cd31e6a..c4af53e0c 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,5 +1,6 @@ module.exports = { arrowParens: "always", + endOfLine: "auto", proseWrap: "always", trailingComma: "all", semi: false,