Add initial linter configuration.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer
2020-07-07 14:55:50 -05:00
parent 84dcbf4f5f
commit 9bcd532c19
6 changed files with 666 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
// +build tools
/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
// Package tools exists to work around a Go modules oddity and depend on some tool versions.
package tools
import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
)