make gofmt

go1.17 go fmt adds the new form of build tags
This commit is contained in:
Benjamin Elder
2021-08-25 11:15:24 -07:00
parent 79922e300c
commit ad2f6e4e37
4 changed files with 6 additions and 2 deletions

View File

@@ -1,11 +1,12 @@
//go:build tools
// +build tools
/*
Package tools is used to track binary dependencies with go modules
https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
*/
package tools
// +build tools
import (
// linter(s)
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"

View File

@@ -1,3 +1,4 @@
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
/*

View File

@@ -1,3 +1,4 @@
//go:build !nointegration
// +build !nointegration
/*

View File

@@ -1,3 +1,4 @@
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
/*