Files
schpet__linear-cli/lefthook.yaml
Peter Schilling a3f890caac fmt
2025-08-21 09:28:40 -07:00

18 lines
381 B
YAML

pre-commit:
parallel: true
commands:
lint:
glob: "*.ts"
run: deno lint --fix {staged_files}
stage_fixed: true
fmt:
glob: "*.{ts,md,yml,yaml,json}"
run: deno fmt {staged_files}
stage_fixed: true
typecheck:
glob: "*.ts"
run: deno check {staged_files}
test:
glob: "*.ts"
run: deno test -A {staged_files}