Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 457 Bytes

File metadata and controls

31 lines (21 loc) · 457 Bytes

Claude Code Reminders

Pre-Commit Checklist

ALWAYS run before committing:

  1. Format files: pnpm run format
  2. Run tests: pnpm run test
  3. Check linting: pnpm run lint

Git Workflow

  • Always format before committing
  • Ensure all tests pass
  • Verify no linting errors

Common Commands

# Format all files
pnpm run format

# Run tests
pnpm run test

# Run linter
pnpm run lint

# Build extensions
pnpm run build