From b663293f1bc44b238da2df3b361ee09b1d688de3 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Sat, 12 Jul 2025 09:42:07 -0400 Subject: [PATCH] chore: update lint-staged and settings.local.json commands - Change lint-staged command from pnpm to npx pnpm for consistency - Add nvm and git config commands to settings.local.json for better tooling support --- .claude/settings.local.json | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 8428682b6..66e07e303 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -22,7 +22,9 @@ "Bash(pnpm --filter ./api test)", "Bash(pnpm i:*)", "Bash(pnpm:*)", - "Bash(corepack prepare:*)" + "Bash(corepack prepare:*)", + "Bash(nvm:*)", + "Bash(git config:*)" ] }, "enableAllProjectMcpServers": false diff --git a/package.json b/package.json index 4a470113c..3b9a2753b 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ }, "lint-staged": { "*.{js,jsx,ts,tsx,vue}": [ - "pnpm lint:fix" + "npx pnpm lint:fix" ] }, "packageManager": "pnpm@10.13.1"