I'm writing Go code that outputs other Go code.
I'd like to know if there's a way to call the gofmt tool to format the code I've written from within the code that's done the writing.
The documentation I've found on gofmt, e.g. the official docs, all deals with how to use gofmt from the command line, but I'd like to call it from within Go code itself.
Example:
func WriteToFile(content string) {
file, err := os.Create("../output/myFile.go")
if err != nil {
log.Fatal("Cannot create file", err)
}
defer file.Close()
fmt.Fprint(file, content)
//Insert code to call gofmt to automatically format myFile.go here
}
Thanks in advance for your time and wisdom.
goimports If your project does not have goimports, click the go get goimports link in the Goimports file notification window. Otherwise, open the Terminal tool window (View | Tool Windows | Terminal), and type the following command to install goimports: go get golang.org/x/tools/cmd/goimports . Press Enter .
Gofmt is a tool that automatically formats Go source code.
Without an explicit path, it processes the standard input. Given a file, it operates on that file; given a directory, it operates on all .go files in that directory, recursively. (Files starting with a period are ignored.) By default, gofmt prints the reformatted sources to standard output.
We can use the gofmt command in the CLI to autoformat a Golang source file. We can autoformat the go code with gofmt package in Golang. Using the command gofmt command from the terminal or command line, we can format the go source file.
The go/format
package makes a function available to format arbitrary text:
https://golang.org/pkg/go/format/
Should be as simple as:
content, err := format.Source(content)
// check error
file.Write(content)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With