use GolangCI-Lint instead of gometalinter

This commit is contained in:
Marten Seemann 2019-02-27 20:46:45 +09:00
parent 9b5a20e772
commit b52d45a1e5
3 changed files with 27 additions and 28 deletions

24
.golangci.yml Normal file
View file

@ -0,0 +1,24 @@
run:
skip-files:
- h2quic/response_writer_closenotifier.go
linters-settings:
misspell:
ignore-words:
- ect
linters:
disable-all: true
enable:
- deadcode
- goconst
- goimports
- gosimple
- ineffassign
- misspell
- staticcheck
- structcheck
- unconvert
- unused
- varcheck
- vet

View file

@ -1,24 +0,0 @@
{
"DisableAll": true,
"Exclude": [
"vendor",
"streams_map_incoming_generic.go",
"streams_map_outgoing_generic.go"
],
"Enable": [
"deadcode",
"goimports",
"ineffassign",
"misspell",
"staticcheck",
"structcheck",
"unconvert",
"varcheck",
"vet"
],
"Linters": {
"vet": "go tool vet -printfuncs=Infof,Debugf,Warningf,Errorf:PATH:LINE:MESSAGE",
"misspell": "misspell -i ect:PATH:LINE:COL:MESSAGE",
"staticcheck": "staticcheck -ignore github.com/lucas-clemente/quic-go/h2quic/response_writer_closenotifier.go:SA1019:PATH:LINE:COL:MESSAGE"
}
}

View file

@ -3,10 +3,9 @@
set -ex
go get -t ./...
if [ ${TESTMODE} == "lint" ]; then
go get github.com/alecthomas/gometalinter
gometalinter --install
gometalinter --deadline=300s --tests ./...
if [ ${TESTMODE} == "lint" ]; then
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.15.0
./bin/golangci-lint run ./...
fi
if [ ${TESTMODE} == "unit" ]; then