From ed7cc1afc8b64ea9aec0791f9400c2b5f1267366 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 17 Oct 2025 17:15:26 +0200 Subject: [PATCH] chore: use prettier instead of lint:fix for 'npm run fix' e.g., eslint can't fix prettier problems in .json files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 50629dd9..130e1cf1 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "lint:fix": "eslint --fix --ext .ts .", "prettier": "prettier --write .", "update-translations": "cd scripts && node update-translations.cjs", - "fix": "npm run update-translations && npm run lint:fix" + "fix": "npm run update-translations && npm run prettier" }, "license": "GNU", "type": "module", -- 2.47.2