fix: nodes no longer beg to be kept alive
This commit is contained in:
parent
7c4154a459
commit
a32b0f728e
12 changed files with 146 additions and 62 deletions
9
.githooks/pre-commit
Executable file
9
.githooks/pre-commit
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
changed="$(gofmt -d .)"
|
||||
[ -n "$changed" ] && {
|
||||
echo 'Some files are not formatted'
|
||||
delta <<< "$changed"
|
||||
exit 1
|
||||
}
|
||||
go vet ./...
|
||||
Loading…
Add table
Add a link
Reference in a new issue