Golang

Run go fmt on all files in Project

go fmt ./...

The ... is a wildcard and ./ makes sure to scope it to the current directory or else it will also try running on external modules

Last updated

Was this helpful?