From b52d45a1e50f9f633767836f0a81ffedcb94878d Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 27 Feb 2019 20:46:45 +0900 Subject: [PATCH] use GolangCI-Lint instead of gometalinter --- .golangci.yml | 24 ++++++++++++++++++++++++ .gometalinter.json | 24 ------------------------ .travis/script.sh | 7 +++---- 3 files changed, 27 insertions(+), 28 deletions(-) create mode 100644 .golangci.yml delete mode 100644 .gometalinter.json diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 00000000..6d90debc --- /dev/null +++ b/.golangci.yml @@ -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 diff --git a/.gometalinter.json b/.gometalinter.json deleted file mode 100644 index 58179437..00000000 --- a/.gometalinter.json +++ /dev/null @@ -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" - } -} diff --git a/.travis/script.sh b/.travis/script.sh index 96774807..86886c9e 100755 --- a/.travis/script.sh +++ b/.travis/script.sh @@ -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