# Stage all modified tracked files (includes manual fixes to already-staged files)
git add -u
# Run lint-staged on staged files (checks linting, formats with prettier, and re-stages)
pnpm lint-staged
# Run type check
pnpm type-check
# Security audit is enforced in CI (`.github/workflows/security.yml`).