Files
Scriberr/lefthook.yml
2025-12-16 18:21:36 -08:00

19 lines
389 B
YAML

# lefthook.yml
pre-commit:
parallel: true
commands:
go-lint:
glob: "**/*.go"
run: golangci-lint run --new-from-rev=HEAD~ {staged_files}
frontend-lint:
root: "web/frontend/"
glob: "**/*.{js,jsx,ts,tsx}"
run: npx eslint {staged_files}
frontend-type-check:
root: "web/frontend/"
glob: "**/*.{ts,tsx}"
run: npm run type-check