windows_exporter/gometalinter.config

28 lines
537 B
Plaintext
Raw Normal View History

2018-10-04 18:42:29 +00:00
{
"Disable": [
"goconst",
2018-10-04 18:42:29 +00:00
"gocyclo",
"gosec",
2018-10-04 18:42:29 +00:00
"maligned",
"megacheck"
],
"Enable": [
"deadcode",
"errcheck",
"golint",
"gotype",
"gotypex",
"ineffassign",
"interfacer",
"structcheck",
"unconvert",
"varcheck",
"vet",
"vetshadow"
2018-10-04 18:42:29 +00:00
],
"Exclude": [
"don't use underscores in Go names",
"exported type .+ should have comment or be unexported",
"should be"
2018-10-04 18:42:29 +00:00
]
}