From 643b8443235b93307130d6e4ee153e141d17f7b4 Mon Sep 17 00:00:00 2001 From: edwinbradford Date: Fri, 11 Oct 2024 14:56:58 +0100 Subject: [PATCH] fix: Add `.prettierrc.json` to disable Prettier Add a `.prettierrc.json` file containing a requirePragma rule to prevent prettier changing all quotation marks to one type where both are used. `.prettierignore` is only found if it is in the workspace root directory which is incompatible with a multiroot workspace. --- .prettierrc.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .prettierrc.json diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000000..fa17b128c1 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "requirePragma": true +}