2017-10-10 12:02:39 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# Runs the linters against dendrite
|
|
|
|
|
|
|
|
# The linters can take a lot of resources and are slow, so they can be
|
|
|
|
# configured using two environment variables:
|
|
|
|
#
|
|
|
|
# - `DENDRITE_LINT_CONCURRENCY` - number of concurrent linters to run,
|
|
|
|
# gometalinter defaults this to 8
|
|
|
|
# - `DENDRITE_LINT_DISABLE_GC` - if set then the the go gc will be disabled
|
|
|
|
# when running the linters, speeding them up but using much more memory.
|
|
|
|
|
|
|
|
|
2017-12-12 11:25:38 +01:00
|
|
|
set -eux
|
|
|
|
|
|
|
|
cd `dirname $0`/..
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
export GOPATH="$(pwd):$(pwd)/vendor"
|
2017-12-12 11:25:38 +01:00
|
|
|
|
|
|
|
# prefer the versions of gometalinter and the linters that we install
|
|
|
|
# to anythign that ends up on the PATH.
|
|
|
|
export PATH="$(pwd)/bin:$PATH"
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
args=""
|
|
|
|
if [ ${1:-""} = "fast" ]
|
|
|
|
then args="--config=linter-fast.json"
|
|
|
|
else args="--config=linter.json"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "${DENDRITE_LINT_CONCURRENCY:-}" ]
|
|
|
|
then args="$args --concurrency=$DENDRITE_LINT_CONCURRENCY"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${DENDRITE_LINT_DISABLE_GC:-}" ]
|
|
|
|
then args="$args --enable-gc"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Installing lint search engine..."
|
2017-11-14 15:58:27 +01:00
|
|
|
gb build github.com/alecthomas/gometalinter/
|
2017-10-10 12:02:39 +02:00
|
|
|
gometalinter --config=linter.json ./... --install
|
|
|
|
|
|
|
|
echo "Looking for lint..."
|
|
|
|
gometalinter ./... $args
|
|
|
|
|
|
|
|
echo "Double checking spelling..."
|
|
|
|
misspell -error src *.md
|