mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
bc382bba46
Fixes #697 Switched to golangci-lint, fixes issues with buildkite and does some linting fixes to appease the new linters.
29 lines
743 B
Bash
Executable File
29 lines
743 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Runs the linters against dendrite
|
|
|
|
# The linters can take a lot of resources and are slow, so they can be
|
|
# configured using the following environment variables:
|
|
#
|
|
# - `DENDRITE_LINT_CONCURRENCY` - number of concurrent linters to run,
|
|
# golangci-lint defaults this to NumCPU
|
|
# - `GOGC` - how often to perform garbage collection during golangci-lint runs.
|
|
# Essentially a ratio of memory/speed. See https://github.com/golangci/golangci-lint#memory-usage-of-golangci-lint
|
|
# for more info.
|
|
|
|
|
|
set -eux
|
|
|
|
cd `dirname $0`/..
|
|
|
|
args=""
|
|
if [ ${1:-""} = "fast" ]
|
|
then args="--fast"
|
|
fi
|
|
|
|
echo "Installing golangci-lint..."
|
|
go get github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
echo "Looking for lint..."
|
|
golangci-lint run $args
|