aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.toml
diff options
context:
space:
mode:
authorJoseph Richey <joerichey94@gmail.com>2018-02-11 20:39:12 -0800
committerJoseph Richey <joerichey94@gmail.com>2018-02-11 20:39:12 -0800
commit734f50d8fcb4df4cf611e774123b835f9fc5666b (patch)
tree3afaaab4739f60b218bdc1308d9fb4870bd53add /Gopkg.toml
parent23b8c7b4eab0375b3d59cf4b2a1f3d7356515f95 (diff)
golint: Use fork that respects vendor directory
Ideally, we would just use "golint ./..." to check all our our source files for lint error. However, this does not work because it will include all packages in the vendor directory. The pull request at: https://github.com/golang/lint/pull/325 fixes this issue, so we will use it until the PR has been merged.
Diffstat (limited to 'Gopkg.toml')
-rw-r--r--Gopkg.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml
index 29da3c7..8336862 100644
--- a/Gopkg.toml
+++ b/Gopkg.toml
@@ -7,6 +7,11 @@ required = [
"github.com/wadey/gocovmerge"
]
+[[constraint]]
+ name = "github.com/golang/lint"
+ branch = "lukyth/feature/ignore-vendor"
+ source = "github.com/lukyth/lint"
+
# Source dependancies
[[constraint]]
name = "github.com/golang/protobuf"