chore: fix lint warnings

This commit is contained in:
Alex Yang
2026-01-13 11:41:28 -08:00
parent ad4ca36320
commit 87048a143b
3 changed files with 3 additions and 3 deletions

View File

@@ -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",

View File

@@ -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,

View File

@@ -28,7 +28,7 @@ export function getSocialProviderEnvVars(provider: string): EnvVar[] {
];
}
const KNOWN_SOCIAL_PROVIDERS = [
const _KNOWN_SOCIAL_PROVIDERS = [
"google",
"github",
"apple",