From 864d72e45363993082e24b06e0d9ec7db431cae1 Mon Sep 17 00:00:00 2001 From: Tony Gorez Date: Tue, 27 Aug 2024 22:41:31 +0200 Subject: [PATCH] fix: remove unused declaration (#4) Signed-off-by: Tony Gorez --- implementations/ajv/main.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/implementations/ajv/main.mjs b/implementations/ajv/main.mjs index 0adffed..5c87498 100644 --- a/implementations/ajv/main.mjs +++ b/implementations/ajv/main.mjs @@ -24,7 +24,6 @@ async function* readJSONLines(filePath) { async function validateSchema(schemaPath, instancePath) { const schema = readJSONFile(schemaPath); - const instance = readJSONFile(instancePath); const ajv = new Ajv({ schemaId: 'id',