diff options
author | Valery Piashchynski <[email protected]> | 2023-03-09 12:38:57 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-03-09 12:38:57 +0100 |
commit | 5f615068e9cdeb70ba4c8f53013898e2c1e7991a (patch) | |
tree | 6d315403ee5bbcd9f7ba27d8494d5a8f08d76f4d /.githooks | |
parent | fe517059eefc0fb094b3af5982c423802a0f11b2 (diff) |
chore(deps): update dependencies
Diffstat (limited to '.githooks')
-rwxr-xr-x | .githooks/pre-commit | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/.githooks/pre-commit b/.githooks/pre-commit deleted file mode 100755 index 907bebe4..00000000 --- a/.githooks/pre-commit +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -set -e -o pipefail - -if ! command -v golangci-lint &> /dev/null; then - echo "golangci-lint is not installed" - exit 1 -fi - -exec golangci-lint --build-tags=race run "$@" |