Use gofmt -s on sources

Brought to you by

	git ls-files \*.go | grep -Ev '/?vendor/' | xargs gofmt -w -s

I thought this should be caught by gofmt/gofumpt linters (that are part
of golangci-lint army) but I guess this did not happen because the
version of golangci-lint is a tad old.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin 2024-08-09 17:10:03 -07:00
parent 35ff885555
commit 1a91ad11dc
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
//go:build (freebsd || netbsd || openbsd)
//go:build freebsd || netbsd || openbsd
package config

View File

@ -1,4 +1,4 @@
//go:build (freebsd || netbsd || openbsd)
//go:build freebsd || netbsd || openbsd
package config