Skip to content

Commit cf2ac8d

Browse files
committed
fix biome format
1 parent fdaa858 commit cf2ac8d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

renamify-mcp/src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,11 @@ export async function main() {
213213

214214
// Only run main if this file is executed directly
215215
import { pathToFileURL } from 'node:url';
216-
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
216+
217+
if (
218+
process.argv[1] &&
219+
import.meta.url === pathToFileURL(process.argv[1]).href
220+
) {
217221
main().catch((error) => {
218222
// Fatal errors need to be reported before exit
219223
process.stderr.write(`Fatal error: ${error}\n`);

0 commit comments

Comments
 (0)