Add golangci-lint to .pre-commit-config.yaml.

This is the configuration for https://pre-commit.com/, which now also runs golangci-lint using the same version as CI (currently v1.33.0).

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer 2021-03-15 10:16:49 -05:00
parent d5beba354b
commit 41949d8e07
No known key found for this signature in database
GPG Key ID: EAE88AD172C5AE2D
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,6 @@
exclude: '^(generated|hack/lib/tilt/tilt_modules)/'
# This is a configuration for https://pre-commit.com/.
# On macOS, try `brew install pre-commit` and then run `pre-commit install`.
exclude: '^(site|generated|hack/lib/tilt/tilt_modules)/'
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
@ -21,3 +23,7 @@ repos:
name: Validate copyright year
entry: hack/check-copyright-year.sh
language: script
- repo: https://github.com/golangci/golangci-lint
rev: v1.33.0
hooks:
- id: golangci-lint