.gometalinter.json

 1{
 2  "sort": ["path"],
 3  "Deadline": "5m",
 4  "Linters": {
 5    "errcheck": {
 6      "Command":           "errcheck -abspath -ignore '[rR]ead|[wW]rite|Close'",
 7      "Pattern":           "PATH:LINE:COL:MESSAGE",
 8      "InstallFrom":       "github.com/kisielk/errcheck",
 9      "PartitionStrategy": "packages"
10    }
11  },
12  "Disable": ["golint","gocyclo", "goconst", "gas", "interfacer", "vet","gosec"]
13}