Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/.gometalinter.json

35 lines
625 B

{
"Vendor": true,
"Deadline": "5m",
"Concurrency": 2,
"Linters": {
"gofmt": {"Command": "gofmt -l -s -w"},
"goimports": {"Command": "goimports -l -w"}
},
"Exclude": [
"\\.pb\\.go",
"method Seek.*should have signature",
"error return value not checked \\(level\\.",
"\"err\" shadows declaration"
],
"Enable": [
"deadcode",
"errcheck",
"goconst",
"gofmt",
"goimports",
"golint",
"gosimple",
"gotypex",
"ineffassign",
"megacheck",
"misspell",
"structcheck",
"unconvert",
"unparam",
"varcheck",
"vet",
"vetshadow"
]
}