2016-11-17 23:40:03 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
golint ./... | \
|
|
|
|
grep -v "don't use an underscore in package name" | \
|
|
|
|
grep -v "don't use ALL_CAPS in Go names; use CamelCase" |
|
2017-04-29 14:50:58 +02:00
|
|
|
grep -v "struct field allow_other should be allowOther" |
|
|
|
|
grep -v "struct field serialize_reads should be serializeReads"
|