Files
sofmani/lefthook.yml

17 lines
290 B
YAML

pre-commit:
parallel: true
commands:
fmt:
glob: "*.go"
run: go fmt ./...
stage_fixed: true
vet:
glob: "*.go"
run: go vet ./...
lint:
glob: "*.go"
run: golangci-lint run ./...
test:
glob: "*.go"
run: go test -v ./...