Skip to content

Commit a74c877

Browse files
committed
Placate linter.
1 parent 5451ace commit a74c877

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/skillMd.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export async function getSkillMdContent(): Promise<string> {
88
async function getSkillMdPath(): Promise<string> {
99
try {
1010
// @ts-expect-error - Bun-specific import attribute
11-
const mod = await import('../integrations/SKILL.md', { with: { type: 'text' } });
11+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
12+
const mod: { default: string } = await import('../integrations/SKILL.md', { with: { type: 'text' } });
1213
return mod.default;
1314
} catch {
1415
return resolve(import.meta.dirname, '../integrations/SKILL.md');

0 commit comments

Comments
 (0)