#!/usr/bin/env bash
# L5 toolkit pre-commit gate. Runs Biome + tsc so broken lint/typecheck
# never lands on main. Keep this in sync with `check:all` (which runs the
# same battery plus the ratchets) — diverging here recreates the
# gate-drift these scripts exist to prevent.
set -euo pipefail
bun run lint
bun run typecheck
