Skip to content

Commit

Permalink
dep: require tools to be vendored
Browse files Browse the repository at this point in the history
This change ot Gopkg.toml will make it easier to build the linting and
formatting tools. Vendoring their source also makes sure that updates to
these tools do not break the build.
  • Loading branch information
josephlr committed Feb 12, 2018
1 parent efeda62 commit fff13ea
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Tools required for generating, liniting, and formatting code
required = [
"github.com/golang/lint/golint",
"github.com/golang/protobuf/protoc-gen-go",
"golang.org/x/tools/cmd/goimports",
"honnef.co/go/tools/cmd/megacheck",
"github.com/wadey/gocovmerge"
]

# Source dependancies
[[constraint]]
name = "github.com/golang/protobuf"
Expand Down

0 comments on commit fff13ea

Please sign in to comment.