Skip to content

Commit

Permalink
reviewdog: ignore underscores in package names (elastic#4015)
Browse files Browse the repository at this point in the history
Unfortunately this is the best we can do between golint and reviewdog:

golang/lint#98 (comment)
  • Loading branch information
7AC authored and ruflin committed Apr 13, 2017
1 parent 81c5957 commit 4840c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reviewdog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
runner:
golint:
cmd: golint $(go list ./... | grep -v /vendor/)
cmd: golint $(go list ./... | grep -v /vendor/) | grep -v "don't use an underscore in package name"

0 comments on commit 4840c93

Please sign in to comment.