From 87048a143b9e4aeaed97f62df81eb673ef062cb0 Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Tue, 13 Jan 2026 11:41:28 -0800 Subject: [PATCH] chore: fix lint warnings --- package.json | 2 +- packages/cli/src/commands/mcp.ts | 2 +- packages/mcp/src/lib/templates/features.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 2e7468aaaa..98b32a20ce 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "format": "biome format . --write", "format:md": "remark . --output --quiet", "format:check": "remark . --quiet --frail", - "lint": "biome check .", + "lint": "biome check . --error-on-warnings", "lint:dependencies": "knip --strict", "lint:fix": "biome check . --fix --unsafe", "lint:spell": "cspell . --color", diff --git a/packages/cli/src/commands/mcp.ts b/packages/cli/src/commands/mcp.ts index 66faea0b8a..eeef48b6c4 100644 --- a/packages/cli/src/commands/mcp.ts +++ b/packages/cli/src/commands/mcp.ts @@ -36,7 +36,7 @@ async function mcpAction(options: MCPOptions) { } } -async function installMcpServers( +async function _installMcpServers( client: "cursor" | "claude-code" | "open-code" | "manual" | string, installLocal: boolean = true, installRemote: boolean = true, diff --git a/packages/mcp/src/lib/templates/features.ts b/packages/mcp/src/lib/templates/features.ts index 5fa892ba3c..c791b0106a 100644 --- a/packages/mcp/src/lib/templates/features.ts +++ b/packages/mcp/src/lib/templates/features.ts @@ -28,7 +28,7 @@ export function getSocialProviderEnvVars(provider: string): EnvVar[] { ]; } -const KNOWN_SOCIAL_PROVIDERS = [ +const _KNOWN_SOCIAL_PROVIDERS = [ "google", "github", "apple",