Skip to content

Commit c6c3974

Browse files
committed
Also placate prettier.
1 parent a74c877 commit c6c3974

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/skillMd.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ async function getSkillMdPath(): Promise<string> {
99
try {
1010
// @ts-expect-error - Bun-specific import attribute
1111
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
12-
const mod: { default: string } = await import('../integrations/SKILL.md', { with: { type: 'text' } });
12+
const mod: { default: string } = await import('../integrations/SKILL.md', {
13+
with: { type: 'text' },
14+
});
1315
return mod.default;
1416
} catch {
1517
return resolve(import.meta.dirname, '../integrations/SKILL.md');
1618
}
17-
}
19+
}

0 commit comments

Comments
 (0)