From 2e333c6dc49e729e19454e425cb8d95283ad34d6 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Mon, 6 Sep 2021 16:37:10 +0200 Subject: [PATCH] Setup Prettier plugins explicitly Prettier can't autodetect the plugins with Yarn PnP, as there is no node_modules folder. Signed-off-by: David Mehren --- .prettierrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierrc b/.prettierrc index 664f7acee..54db7998c 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { + "plugins": ["@trivago/prettier-plugin-sort-imports"], "singleQuote": true, "trailingComma": "all", "importOrder": ["^[./]"],