From 06f80fa99831ca03a99dd112466381d94c345efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Tue, 28 Jan 2025 21:10:30 +0800 Subject: [PATCH] chore: fix lint --- src/utils/context.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/context.ts b/src/utils/context.ts index f0b2a269..5b86d808 100644 --- a/src/utils/context.ts +++ b/src/utils/context.ts @@ -1,4 +1,5 @@ -import { Parser, type Program } from 'acorn' +import type { Program } from 'acorn' +import { Parser } from 'acorn' export function parse(code: string, opts: any = {}): Program { return Parser.parse(code, {