Skip to content

Commit f1b3223

Browse files
committed
chore(mcp): biome line wrapping
1 parent 99d149f commit f1b3223

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

apps/mcp-server/src/ooxml-queries.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,10 @@ async function getInheritanceEdge(
199199
LIMIT 1
200200
`;
201201
if (rows.length === 0) return null;
202-
return { baseId: rows[0].base_symbol_id as number, relation: rows[0].relation as InheritanceEdgeRow["relation"] };
202+
return {
203+
baseId: rows[0].base_symbol_id as number,
204+
relation: rows[0].relation as InheritanceEdgeRow["relation"],
205+
};
203206
}
204207

205208
async function getSymbolName(sql: Sql, symbolId: number): Promise<string> {
@@ -234,7 +237,10 @@ async function walkCompositor(
234237
source: ChildEdge["source"],
235238
owningTypeName: string,
236239
): Promise<ChildEdge[]> {
237-
const path = [...pathSoFar, `${compositor.kind}(${formatOccurs(compositor.minOccurs, compositor.maxOccurs)})`];
240+
const path = [
241+
...pathSoFar,
242+
`${compositor.kind}(${formatOccurs(compositor.minOccurs, compositor.maxOccurs)})`,
243+
];
238244

239245
const elemRows = await sql`
240246
SELECT 'element' AS entry_kind, s.local_name, s.vocabulary_id, ns.uri AS namespace_uri,

0 commit comments

Comments
 (0)