From c7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Jul 2020 11:12:55 +0200 Subject: go.mod: vendor golangci-lint --- pkg/tools/tools.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pkg/tools/tools.go (limited to 'pkg/tools') 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" +) -- cgit mrf-deployment