Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created April 25, 2020 17:09
Show Gist options
  • Save brpaz/9cb3125db7ab926e8a6f8cf2f5e2dffe to your computer and use it in GitHub Desktop.
Save brpaz/9cb3125db7ab926e8a6f8cf2f5e2dffe to your computer and use it in GitHub Desktop.
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- repo: local
hooks:
- id: lint
name: Lint code
entry: make lint
language: system
types: [go]
- id: format
name: Format code
entry: make fmt
language: system
types: [go]
- id: format
name: Unit tests
entry: make test
language: system
types: [go]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment