summaryrefslogtreecommitdiff
path: root/.githooks/pre-commit
blob: 2d90586c01b477f8bd441bd76e2425e05512be5e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e -o pipefail

# https://github.com/koalaman/shellcheck/wiki/SC2039#redirect-both-stdout-and-stderr
if ! command -v golangci-lint 2>&1 /dev/null; then
    echo "golangci-lint is not installed"
    exit 1
fi

exec golangci-lint --build-tags=race run "$@"