File: lint.bash

package info (click to toggle)
golang-github-goombaio-namegenerator 0.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 156 kB
  • sloc: makefile: 62; sh: 32
file content (43 lines) | stat: -rwxr-xr-x 702 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail

# gometalinter

if [ ! $(command -v gometalinter) ]
then
	go get github.com/alecthomas/gometalinter
	gometalinter --update --install
fi

echo "gometalinter:"
time gometalinter \
	--exclude='/thrift/' \
	--exclude='/pb/' \
	--exclude='no args in Log call \(vet\)' \
	--disable=errcheck \
	--disable=dupl \
	--disable=aligncheck \
	--disable=gotype \
	--cyclo-over=20 \
	--tests \
	--concurrency=2 \
	--deadline=300s \
	./...
echo 

# golangci-lint

if [ ! $(command -v golangci-lint) ]
then
	go get github.com/golangci/golangci-lint/cmd/golangci-lint
fi


echo "golangci-lint:"
time golangci-lint \
	run \
	--disable errcheck \
	./...