From e13b3d776b36fcdb40d24a92083fd65fd83035d9 Mon Sep 17 00:00:00 2001 From: Dieter Stinglhamber Date: Thu, 4 Jan 2024 21:54:54 +0100 Subject: [PATCH] chore: fix linting issue --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c3875e5..fddd91d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ import { type Input, fromFile, fromURL, Parser } from '@asyncapi/parser'; +import openAPISchemaParser from '@asyncapi/openapi-schema-parser'; import AsyncAPIParsingError from './AsyncAPIParsingError'; import validate, { type ValidationFunction } from './validate'; -import openAPISchemaParser from '@asyncapi/openapi-schema-parser'; const parser = new Parser({ ruleset: { core: true, recommended: false },