From e15868676fe0161546cce825b5042c10d6328c64 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Mon, 13 Nov 2017 13:25:54 +0000 Subject: [PATCH] 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. --- linter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linter.json b/linter.json index 53308ba51..7305539d0 100644 --- a/linter.json +++ b/linter.json @@ -10,7 +10,7 @@ "golint", "varcheck", "structcheck", - "aligncheck", + "maligned", "ineffassign", "gas", "misspell",