blob: 6da72c8bfe1a7137576b818d651cbf0147a81ba2 (
plain)
1
2
3
4
5
6
7
|
#!/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" |
grep -v "struct field allow_other should be allowOther" |
grep -v "struct field serialize_reads should be serializeReads"
|