aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tools
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-07-04 11:12:55 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-07-04 15:05:30 +0200
commitc7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 (patch)
tree0dff0ee1f98dbfa3ad8776112053a450d176592b /pkg/tools
parent9573094ce235bd9afe88f5da27a47dd6bcc1e13b (diff)
go.mod: vendor golangci-lint
Diffstat (limited to 'pkg/tools')
-rw-r--r--pkg/tools/tools.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go
new file mode 100644
index 000000000..009963b3f
--- /dev/null
+++ b/pkg/tools/tools.go
@@ -0,0 +1,13 @@
+// Copyright 2020 syzkaller project authors. All rights reserved.
+// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
+
+// +build tools
+
+// tools is not a normal package, it's only purpose is tools dependency management.
+// It allows us to vendor all used tools, ensure that all contributors have the same versions of tools,
+// and have custom golangci-lint checkers.
+package tools
+
+import (
+ _ "github.com/golangci/golangci-lint/cmd/golangci-lint"
+)