| 12345678910111213141516171819202122232425262728293031 |
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v6.0.0
- hooks:
- - id: trailing-whitespace
- exclude_types: [markdown]
- exclude: LICENSE
- - id: end-of-file-fixer
- exclude: LICENSE
- - id: check-yaml
- - id: check-added-large-files
- - repo: https://github.com/tekwizely/pre-commit-golang
- rev: v1.0.0-rc.2
- hooks:
- - id: go-imports-repo
- args:
- - "-local"
- - "go.mau.fi/whatsmeow"
- - "-w"
- - id: go-vet-repo-mod
- # TODO enable this
- #- id: go-staticcheck-repo-mod
- - id: go-mod-tidy
- - repo: https://github.com/beeper/pre-commit-go
- rev: v0.4.2
- hooks:
- # TODO enable this
- #- id: zerolog-ban-msgf
- - id: zerolog-use-stringer
|