Go 格式化工具
默认是使用 gofmt
进行 Go 源码格式化的。如果要使用 goimports
,需要做如下调整:
- 安装 goimports:
go get -u github.com/bradfitz/goimports
- 在“偏好设定” -> “Go 工具” -> “Go 格式化”中选择 goimports
原文: https://88250.gitbooks.io/wide-user-guide/zh-cn/setup/gofmt_tool.html
默认是使用 gofmt
进行 Go 源码格式化的。如果要使用 goimports
,需要做如下调整:
go get -u github.com/bradfitz/goimports
原文: https://88250.gitbooks.io/wide-user-guide/zh-cn/setup/gofmt_tool.html
本文档使用 BookStack 构建