Merge pull request #495 from mattmoyer/add-golangci-lint-to-pre-commit-hooks

Add golangci-lint to .pre-commit-config.yaml.
This commit is contained in:
Matt Moyer 2021-03-15 08:23:09 -07:00 committed by GitHub
commit c538a4e8e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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