github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/fix/in/goimports.go (about) 1 //golangcitest:args -Egofmt,goimports 2 //golangcitest:expected_exitcode 0 3 package p 4 5 import ( 6 "os" 7 "fmt" 8 ) 9 10 func goimports(a, b int) int { 11 if a != b { 12 return 1 13 } 14 return 2 15 }