While you are linting you project, you may have the following error :
pkg/component/dog.go:5: File is not `goimports`-ed (goimports)
"fmt"
To resolve it, use the following command :
goimports -local "fmt" -w .
Note : If you have another import targeted in your error message, please replace
fmt
with the import shown in the message.
I hope it will help you! 🍺
Top comments (0)