From 85a4005a48e8c4391eaa69c2b04f2ad71620a3d7 Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Mon, 25 Mar 2024 14:55:13 +0100 Subject: [PATCH] Bug 36400 (follow-up): remove option editorconfig from .prettierrc.js - The option doesn't seem do what it's intended for: - The debug logs still show options from the .editorconfig (which is actually what we want in this case). - The option causes unwanted warnings when using the cli. - In summary: we have to keep in mind that the rules are now hierarchical: 1. .editorconfig 2. .prettierrc.js Signed-off-by: Brendan Lawlor --- .prettierrc.js | 1 - 1 file changed, 1 deletion(-) diff --git a/.prettierrc.js b/.prettierrc.js index 62b9288b56..2e9ca72393 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,6 +1,5 @@ module.exports = { arrowParens: "avoid", - editorconfig: "false", trailingComma: "es5", overrides: [ { -- 2.30.2