better-auth-invite
Version:
**UNDER DEVELOPMENT — ALPHA**
25 lines (23 loc) • 513 B
YAML
pre-commit:
commands:
format:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm run format --staged
stage_fixed: true
lint:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm run lint --staged
stage_fixed: true
lint-unused-exports:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm run lint:unused-exports
pre-push:
parallel: true
commands:
typecheck:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm run typecheck
test:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm run test