aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tools/tools.go
blob: da65663e1472b008b637f883f80bb2868d67e6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
// +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"
)