diff --git a/biome.json b/biome.json index c0f09c5..1dec49b 100644 --- a/biome.json +++ b/biome.json @@ -2,17 +2,13 @@ "formatter": { "indentStyle": "space", "indentWidth": 2, - "ignore": [ - "/node_modules" - ] + "ignore": ["/node_modules"] }, "linter": { "enabled": true, "rules": { "recommended": true }, - "ignore": [ - "/node_modules" - ] + "ignore": ["/node_modules"] } } diff --git a/bun.lockb b/bun.lockb index f0bb92f..c68ff85 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 23ae26c..d4ddd16 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,6 @@ "prettier": "^3.0.3" }, "devDependencies": { - "@biomejs/biome": "^1.2.2" + "@biomejs/biome": "latest" } } diff --git a/script/add-competition.ts b/script/add-competition.ts index af2d00f..530de20 100755 --- a/script/add-competition.ts +++ b/script/add-competition.ts @@ -55,9 +55,10 @@ const competitionInfo: CompetitionInfo = { roundsByEvent, }; -const outputDataFolder = await COMPETITON_SOURCE_DATA_FOLDER.getRelative( - competitionID, -).ensureFolderExists(); +const outputDataFolder = + await COMPETITON_SOURCE_DATA_FOLDER.getRelative( + competitionID, + ).ensureFolderExists(); const outputFilePath = outputDataFolder.getRelative("competition-info.json"); const roundResultFolder = await outputDataFolder