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
This commit is contained in:
Eli Bosley
2025-07-12 09:42:07 -04:00
parent 4c0b967164
commit b663293f1b
2 changed files with 4 additions and 2 deletions

View File

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

View File

@@ -55,7 +55,7 @@
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"pnpm lint:fix"
"npx pnpm lint:fix"
]
},
"packageManager": "pnpm@10.13.1"