From cbb0567cd424aed8560fb6c4de322e6c3b157b9a Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Wed, 10 Feb 2016 10:33:16 +0000 Subject: [PATCH] Exclude ALL_CAPS warnings from linter --- lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint b/lint index 89d534ba8..22deea8b2 100755 --- a/lint +++ b/lint @@ -85,7 +85,7 @@ function lint_go { if [ -z "$IGNORE_LINT_COMMENT" ]; then lintoutput=$(golint "${filename}") else - lintoutput=$(golint "${filename}" | grep -vE 'comment|dot imports') + lintoutput=$(golint "${filename}" | grep -vE 'comment|dot imports|ALL_CAPS') fi if [ -n "$lintoutput" ]; then lint_result=1