Files
TrollSSH/lefthook.yml
T

16 lines
290 B
YAML

pre-commit:
parallel: true
commands:
format:
glob: "*.go"
run: test -z "$(gofmt -l {staged_files})"
vet:
glob: "*.go"
run: go vet ./...
lint:
glob: "*.go"
run: golangci-lint run ./...
test:
glob: "*.go"
run: go test ./...