diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2018-08-30 03:55:16 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2018-08-30 03:55:16 -0700 |
| commit | a7118153aa7c9392eeeddf1377301e05d68fcacb (patch) | |
| tree | b7856c5c6e0070f01f0f26b525f11ab8dd2d7f97 | |
| parent | 3c4664d603fb288b70938a00b05437ce8b2d0e64 (diff) | |
Fix golint to not need a special fork
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ format: $(BIN)/goimports lint: $(BIN)/golint $(BIN)/megacheck go vet ./... - golint -set_exit_status ./... + go list ./... | xargs -L1 golint -set_exit_status megacheck -unused.exported -simple.exit-non-zero ./... clean: |