13 lines
369 B
YAML
13 lines
369 B
YAML
pre-commit:
|
|
parallel: false
|
|
commands:
|
|
biome:
|
|
glob: "*.{ts,tsx,js,jsx,json,jsonc,md,yml,yaml}"
|
|
run: npx pnpm@9.15.9 biome check --write {staged_files}
|
|
stage_fixed: true
|
|
typecheck:
|
|
run: npx pnpm@9.15.9 typecheck
|
|
test:
|
|
glob: "*.{ts,tsx,js,jsx}"
|
|
run: npx pnpm@9.15.9 vitest related --run --passWithNoTests {staged_files}
|