Files
TrollSSH/lefthook.yml
T

16 lines
290 B
YAML
Raw Normal View History

pre-commit:
parallel: true
commands:
format:
glob: "*.go"
run: test -z "$(gofmt -l {staged_files})"
vet:
glob: "*.go"
2026-07-16 23:29:14 +07:00
run: go vet ./...
lint:
glob: "*.go"
2026-07-16 23:29:14 +07:00
run: golangci-lint run ./...
test:
glob: "*.go"
2026-07-16 23:29:14 +07:00
run: go test ./...