Files
quic-go/.gometalinter.json
Marten Seemann 6117d8c722 run gometalinter with staticcheck instead of megacheck
Megacheck was deprecated and recently removed from gometalinter:
https://github.com/alecthomas/gometalinter/pull/579.
2019-01-22 14:55:12 +07:00

25 lines
610 B
JSON

{
"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"
}
}