pomerium/.pre-commit-config.yaml
Caleb Doxsey 48cd10d46b
integration: add single-cluster integration tests (#2516)
* integration: add single-cluster integration tests

* remove kind load
2021-08-24 15:35:05 -06:00

23 lines
579 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: "(docs/.*|integration/tpl/files/.*)"
- id: check-yaml
exclude: "examples/.*"
- id: check-added-large-files
- repo: https://github.com/syntaqx/git-hooks
rev: v0.0.16
hooks:
- id: go-mod-tidy
- repo: local
hooks:
- id: lint
name: lint
language: system
entry: make
args: ["lint"]
types: ["go"]
pass_filenames: false