enable gofumpt formatter

Based on our discussion gofumpt won the vote so use that one via
golangci-lint.

https://github.com/containers/podman/discussions/27291

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-11-11 12:12:42 +01:00
parent 2555b8b413
commit 5c1ed12d8d
389 changed files with 1228 additions and 1600 deletions

View File

@@ -72,8 +72,10 @@ func TestCUnescapeOne(t *testing.T) {
func TestExtractFirstWordUnescapes(t *testing.T) {
input := `\a \b \f \n \r \t \v \\ \" \' \s \x50odman is \U0001F51F/\u0031\u0030 \110ello \127orld`
expected := []string{"\a", "\b", "\f", "\n", "\r", "\t", "\v", "\\", "\"", "'", " ",
"Podman", "is", "🔟/10", "Hello", "World"}
expected := []string{
"\a", "\b", "\f", "\n", "\r", "\t", "\v", "\\", "\"", "'", " ",
"Podman", "is", "🔟/10", "Hello", "World",
}
next := input
for i := range expected {