dendrite/linter.json
Richard van der Hoff e15868676f Update gometalinter config
gometalinter now uses `maligned` instead of `aligncheck`
(https://github.com/alecthomas/gometalinter/pull/367), so we need to update our
config accordingly.
2017-11-14 21:54:55 +00:00

24 lines
395 B
JSON

{
"Vendor": true,
"Cyclo": 12,
"Deadline": "5m",
"Enable": [
"vetshadow",
"gotype",
"deadcode",
"gocyclo",
"golint",
"varcheck",
"structcheck",
"maligned",
"ineffassign",
"gas",
"misspell",
"unparam",
"errcheck",
"vet",
"megacheck",
"goconst"
]
}