From df881f5a1719d8231624044f0088bcf26e172837 Mon Sep 17 00:00:00 2001 From: FredKSchott Date: Fri, 12 Nov 2021 00:01:05 +0000 Subject: [PATCH] [ci] yarn format --- scripts/stats/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stats/index.js b/scripts/stats/index.js index 42a58486d..2b81f7a8f 100644 --- a/scripts/stats/index.js +++ b/scripts/stats/index.js @@ -112,7 +112,7 @@ export async function run() { `"${new Date().toISOString()}"`, ].join(','); - const statCsv = readFileSync('scripts/stats/stats.csv', {encoding: 'utf-8'}); + const statCsv = readFileSync('scripts/stats/stats.csv', { encoding: 'utf-8' }); const [statHeader, ...statItems] = statCsv.split('\n'); const updatedStatCsv = [statHeader, entry, ...statItems].join('\n'); writeFileSync('scripts/stats/stats.csv', updatedStatCsv);