From a4e29d5380b4f3f17c13d8d5f33593dec3f0a571 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Fri, 17 Oct 2025 10:09:07 +0200 Subject: [PATCH] [monorepo] don't fight with prettier, do not run on json files (#29135) I've tried a lots of variants for the ignore rule. It does not work. GitOrigin-RevId: 08bf3df1d2629dcfc6eccc98df098ce094466d5b --- server-ce/test/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-ce/test/package.json b/server-ce/test/package.json index aad6e526b7..06a441bb15 100644 --- a/server-ce/test/package.json +++ b/server-ce/test/package.json @@ -6,8 +6,8 @@ "scripts": { "cypress:open": "cypress open --e2e --browser chrome", "cypress:run": "cypress run --e2e --browser chrome", - "format": "prettier --list-different $PWD/'**/*.{js,mjs,ts,tsx,json}'", - "format:fix": "prettier --write $PWD/'**/*.{js,mjs,ts,tsx,json}'" + "format": "prettier --list-different $PWD/'**/*.{js,mjs,ts,tsx}'", + "format:fix": "prettier --write $PWD/'**/*.{js,mjs,ts,tsx}'" }, "devDependencies": { "@isomorphic-git/lightning-fs": "^4.6.0",