From b9e82d60fa9617f5c7417d696b9b49477323c104 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 20 Sep 2017 10:20:49 +0100 Subject: [PATCH] Add config for 'fast' linters --- linter-fast.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 linter-fast.json diff --git a/linter-fast.json b/linter-fast.json new file mode 100644 index 000000000..2abb30aff --- /dev/null +++ b/linter-fast.json @@ -0,0 +1,15 @@ +{ + "Vendor": true, + "Cyclo": 12, + "Deadline": "5m", + "Enable": [ + "vetshadow", + "gotype", + "deadcode", + "gocyclo", + "ineffassign", + "gas", + "misspell", + "errcheck" + ] +}