aboutsummaryrefslogtreecommitdiff
path: root/tools/tools.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tools.go')
-rw-r--r--tools/tools.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/tools.go b/tools/tools.go
new file mode 100644
index 0000000..5cfae35
--- /dev/null
+++ b/tools/tools.go
@@ -0,0 +1,9 @@
+//go:build tools
+// +build tools
+
+package tools
+
+import (
+ _ "golang.org/x/lint/golint"
+ _ "honnef.co/go/tools/cmd/staticcheck"
+)