pulumi/Gometalinter.json
Joe Duffy d419229301
Add additional linting (#768)
This adds additional linting checks.  Most importantly, it will
check calls to our custom format routines for missing arguments.
2017-12-27 17:10:12 -08:00

29 lines
563 B
JSON

{
"Deadline": "5m",
"DisableAll": true,
"Enable": [
"deadcode",
"errcheck",
"gas",
"goconst",
"gofmt",
"golint",
"ineffassign",
"interfacer",
"lll",
"megacheck",
"misspell",
"nakedret",
"safesql",
"structcheck",
"unconvert",
"varcheck",
"vet",
"vetshadow"
],
"Linters": {
"vet": "go tool vet -printfuncs=Logf,Errorf,Infof,Infoerrf,Warningf :PATH:LINE:MESSAGE"
},
"LineLength": 120
}