aboutsummaryrefslogtreecommitdiff
path: root/golint.bash
blob: 4ab0e8c688d6e083f377008594413d5f94c25307 (plain)
1
2
3
4
5
6
#!/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"