yay/.pre-commit-config.yaml

30 lines
735 B
YAML
Raw Permalink Normal View History

2021-03-11 08:36:42 +00:00
default_stages: [commit]
repos:
- repo: https://github.com/dnephin/pre-commit-golang
rev: v0.5.1
hooks:
- id: go-fmt
- id: golangci-lint
- id: go-unit-tests
- id: go-build
2020-07-10 22:48:30 +00:00
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8 # Use the sha or tag you want to point at
2020-07-10 22:48:30 +00:00
hooks:
- id: prettier
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0 # Use the ref you want to point at
2020-07-10 22:48:30 +00:00
hooks:
- id: trailing-whitespace
- id: check-json
- id: check-yaml
2020-07-24 21:45:56 +00:00
- id: check-added-large-files
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.15.0
2020-07-24 21:45:56 +00:00
hooks:
- id: commitizen
stages: [commit-msg]