Older versions of Go do not format these comments, so we can already
reformat them ahead of time to prevent gofmt linting failing once
we update to Go 1.19 or up.
Result of:
gofmt -s -w $(find . -type f -name '*.go' | grep -v "/vendor/")
With some manual adjusting.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 82427d1a07)
Signed-off-by: Cory Snider <csnider@mirantis.com>
9 lines
209 B
Go
9 lines
209 B
Go
//go:build never
|
|
// +build never
|
|
|
|
package main
|
|
|
|
// Not used, but required for generating other man pages.
|
|
// Import it here so that the package is included by vndr.
|
|
import _ "github.com/cpuguy83/go-md2man/v2"
|