From 07ec0619872983590e74724686156603737df0c8 Mon Sep 17 00:00:00 2001 From: Marco Hutter Date: Wed, 3 Jul 2024 19:21:23 +0200 Subject: [PATCH] Formatting --- specs/SubtreeValidationSpec.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/specs/SubtreeValidationSpec.ts b/specs/SubtreeValidationSpec.ts index acedaf05..52cd4506 100644 --- a/specs/SubtreeValidationSpec.ts +++ b/specs/SubtreeValidationSpec.ts @@ -9,20 +9,22 @@ import { ValidationResult } from "../src/validation/ValidationResult"; /** * Validate the specified subtree file from the `specs/data/subtrees` * directory. - * + * * Note that in order to validate a subtree file, the validator requires - * additional data elements. Namely, the `TileImplicitTiling` that + * additional data elements. Namely, the `TileImplicitTiling` that * defines the structure of the subtree, and a `Schema` (if the * subtree contains metadata). - * + * * This function will load this data from the additional files in * the `specs/data/` directory that define the same structure for * all subtree spec files. - * + * * @param fileName - The subtree file name * @returns A promise to the `ValidationResult` */ -async function validateSpecSubtreeFile(fileName: string): Promise { +async function validateSpecSubtreeFile( + fileName: string +): Promise { // The schema for the subtrees in the specs directory const specSchema: Schema = await readJsonUnchecked( "specs/data/schemas/validSchema.json" @@ -46,7 +48,6 @@ async function validateSpecSubtreeFile(fileName: string): Promise