diff --git a/biome.json b/biome.json index 2eb0751..b405319 100644 --- a/biome.json +++ b/biome.json @@ -11,7 +11,8 @@ }, "formatter": { "enabled": true, - "indentStyle": "tab" + "indentStyle": "tab", + "indentWidth": 2 }, "organizeImports": { "enabled": true @@ -26,5 +27,11 @@ "formatter": { "quoteStyle": "double" } + }, + "json": { + "formatter": { + "indentStyle": "tab", + "indentWidth": 2 + } } } diff --git a/my-fastmcp-app/src/index.ts b/my-fastmcp-app/src/index.ts index 13e1dbb..b6bc355 100644 --- a/my-fastmcp-app/src/index.ts +++ b/my-fastmcp-app/src/index.ts @@ -2,7 +2,7 @@ import { FastMCP } from "fastmcp"; import { z } from "zod"; const server = new FastMCP({ - name: "my-fastmcp-app", + name: "my-fastmcp-server", version: "1.0.0", });