From 62142d439e0964b8515df13a8330750cd677bed7 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Sat, 22 Apr 2017 00:35:13 +0200 Subject: [PATCH] lint: Extend deadline And reduce the number of scanned directories. Signed-off-by: Samuel Ortiz --- .tool/lint | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tool/lint b/.tool/lint index e70b53f8..cf321d5c 100755 --- a/.tool/lint +++ b/.tool/lint @@ -4,7 +4,7 @@ set -o errexit set -o nounset set -o pipefail -for d in $(find . -type d -not -iwholename '*.git*' -a -not -iname '.tool' -a -not -iwholename '*vendor*'); do +for d in $(find . -type d -not -iwholename '*.git*' -a -not -iname '.tool' -a -not -iwholename '*vendor*' -a -not -iwholename '*.artifacts*' -a -not -iwholename '*contrib*' -a -not -iwholename '*test*' -a -not -iwholename '*logo*' -a -not -iwholename '*conmon*' -a -not -iwholename '*completions*' -a -not -iwholename '*docs*' -a -not -iwholename '*pause*'); do ${GOPATH}/bin/gometalinter \ --exclude='error return value not checked.*(Close|Log|Print|RemoveAll).*\(errcheck\)$' \ --exclude='declaration of.*err.*shadows declaration.*\(vetshadow\)$' \ @@ -19,5 +19,5 @@ for d in $(find . -type d -not -iwholename '*.git*' -a -not -iname '.tool' -a -n --cyclo-over=80 \ --dupl-threshold=100 \ --tests \ - --deadline=60s "${d}" + --deadline=120s "${d}" done