From 2be1bd8e8c2ac4047e84e80a928e55ebea3900d7 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 18 Dec 2024 01:22:41 +0100 Subject: [PATCH] Chore: --- scripts/velopark/compare.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/scripts/velopark/compare.ts b/scripts/velopark/compare.ts index 68fc12dc5..f85697d03 100644 --- a/scripts/velopark/compare.ts +++ b/scripts/velopark/compare.ts @@ -108,12 +108,19 @@ class Compare extends Script { distanceBins[bin] += 1 } - fs.writeFileSync("report_diff.json", JSON.stringify({ - diffs, - distanceBins, - binSize, - "#binsize": "Every bin increases with this amount in meter" - }, null, " ")) + fs.writeFileSync( + "report_diff.json", + JSON.stringify( + { + diffs, + distanceBins, + binSize, + "#binsize": "Every bin increases with this amount in meter", + }, + null, + " " + ) + ) console.log("Written report_diff.json") }