Created
April 25, 2020 17:09
-
-
Save brpaz/9cb3125db7ab926e8a6f8cf2f5e2dffe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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