repos: - repo: https://github.com/Bahjat/pre-commit-golang rev: a4be1d0f860565649a450a8d480e541844c14a07 hooks: - id: go-vet - id: go-static-check # install https://staticcheck.io/docs/ - id: golangci-lint # requires github.com/golangci/golangci-lint - repo: local hooks: - id: go-errcheck name: go-errcheck entry: errcheck -exclude .errcheck_excludes.txt ./... language: system pass_filenames: false - id: make-fmt # requires 'go install mvdan.cc/gofumpt@latest' and 'go install github.com/daixiang0/gci@latest' name: make-fmt entry: make fmt language: system pass_filenames: false