Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 28, 2022 02:59 pm GMT

How to debug : File is not `gofmt`-ed with `-s` (gofmt)

While linting your project, you can have the following error :

pkg/apis/dogs.go:11: File is not `gofmt`-ed with `-s` (gofmt)

To resolve the issue, execute the following command :

gofmt -s -w .

It will simplify the code (with the option -s) and write the result back (with the option -w) on all the current folder (with .).

I hope it will help you!


Original Link: https://dev.to/mxglt/how-to-debug-file-is-not-gofmt-ed-with-s-gofmt-1ejf

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To