summaryrefslogtreecommitdiff
path: root/.githooks/pre-commit
diff options
context:
space:
mode:
Diffstat (limited to '.githooks/pre-commit')
-rwxr-xr-x.githooks/pre-commit10
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 "$@"