From be3dd7ab66780129948374b26dd476cb7b1eaba7 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 17 Oct 2025 22:37:59 -0700 Subject: [PATCH] chore: use prettier instead of lint:fix for 'npm run fix' (#2906) e.g., eslint can't fix prettier problems in .json files Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2906 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- 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",