aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tools/tools.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tools/tools.go')
-rw-r--r--pkg/tools/tools.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go
deleted file mode 100644
index 66b0cb057..000000000
--- a/pkg/tools/tools.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// 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.
-
-//go: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/dvyukov/go-fuzz/go-fuzz-build"
- _ "github.com/dvyukov/go-fuzz/go-fuzz-dep"
- _ "github.com/golangci/golangci-lint/cmd/golangci-lint"
- _ "github.com/google/keep-sorted"
- _ "github.com/vektra/mockery/v2"
- _ "golang.org/x/tools/cmd/stringer"
-)