diff options
| -rwxr-xr-x | golint.bash | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/golint.bash b/golint.bash index 5040c12..be79ed1 100755 --- a/golint.bash +++ b/golint.bash @@ -4,8 +4,7 @@ OUTPUT=$(  	golint ./... | \  	 grep -v "don't use an underscore in package name" | \  	 grep -v "don't use ALL_CAPS in Go names; use CamelCase" | -	 grep -v "struct field allow_other should be allowOther" | -	 grep -v "struct field serialize_reads should be serializeReads" +	 grep -v "don't use underscores in Go names"  )  # No output --> all good | 
