lint: enable gofumpt extra rules (#690)

Co-authored-by: Samuel Berthe <dev@samuel-berthe.fr>
This commit is contained in:
Nathan Baulch
2025-09-26 21:32:59 +10:00
committed by GitHub
parent 1df48c4a2a
commit f5aac81cc0
22 changed files with 118 additions and 115 deletions

View File

@@ -42,7 +42,7 @@ func ExampleMap() {
func ExampleMapI() {
list := []int{1, 2, 3, 4}
MapI(list, func(nbr int, index int) int {
MapI(list, func(nbr, index int) int {
return nbr * index
})