mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-22 16:24:00 +01:00
edfbf7769e
For some reason, calling unlink() on the binary causes all future spawned processes to die with a "signal: killed" error. I have no idea why this happens, but it doesn't seem to be necessary to call unlink on darwin, so I'm just tweaking this to not call unlink on darwin. Also remove tidy from the pre-commit since macos ships with a truly ancient version of tidy
17 lines
555 B
YAML
17 lines
555 B
YAML
repos:
|
|
- repo: https://github.com/Bahjat/pre-commit-golang
|
|
rev: a4be1d0f860565649a450a8d480e541844c14a07
|
|
hooks:
|
|
- id: go-fmt-import
|
|
- id: go-vet
|
|
- id: gofumpt # requires github.com/mvdan/gofumpt
|
|
- id: go-static-check # install https://staticcheck.io/docs/
|
|
- id: golangci-lint # requires github.com/golangci/golangci-lint
|
|
- repo: local
|
|
hooks:
|
|
- id: go-errcheck
|
|
name: go-errcheck
|
|
entry: errcheck -exclude .errcheck_excludes.txt ./...
|
|
language: system
|
|
pass_filenames: false
|