diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2018-02-11 20:39:12 -0800 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2018-02-11 20:39:12 -0800 |
| commit | 734f50d8fcb4df4cf611e774123b835f9fc5666b (patch) | |
| tree | 3afaaab4739f60b218bdc1308d9fb4870bd53add /Gopkg.lock | |
| parent | 23b8c7b4eab0375b3d59cf4b2a1f3d7356515f95 (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.lock')
| -rw-r--r-- | Gopkg.lock | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,13 +2,14 @@ [[projects]] - branch = "master" + branch = "lukyth/feature/ignore-vendor" name = "github.com/golang/lint" packages = [ ".", "golint" ] - revision = "e14d9b0f1d332b1420c1ffa32562ad2dc84d645d" + revision = "0dcd199f6e2c9e5fb738b78bfa2170de4c78a25f" + source = "github.com/lukyth/lint" [[projects]] name = "github.com/golang/protobuf" @@ -113,6 +114,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "65c9e40abcc4d3679513c43ba962f87115e94ced6497ac13e9ef5685815c7da8" + inputs-digest = "13bc740ba83539fecd6dd4b7d026fd221077369cb6b170e83d288383d0fde474" solver-name = "gps-cdcl" solver-version = 1 |