2026-07-13 23:15:50 +07:00
|
|
|
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 ./...
|
2026-07-13 23:15:50 +07:00
|
|
|
lint:
|
|
|
|
|
glob: "*.go"
|
2026-07-16 23:29:14 +07:00
|
|
|
run: golangci-lint run ./...
|
2026-07-13 23:15:50 +07:00
|
|
|
test:
|
|
|
|
|
glob: "*.go"
|
2026-07-16 23:29:14 +07:00
|
|
|
run: go test ./...
|