英文:
How does play.golang.org auto-manage imports?
问题
golang.org在Go Playgrounds中使用了一个开源的JavaScript库吗?"Imports"复选框是如何知道要添加哪些导入项的?
http://play.golang.org/p/A0nH96VB4S
英文:
Is there an open source JavaScript library that golang.org uses for Go Playgrounds? How does the Imports checkbox know which imports to add?
答案1
得分: 6
它使用 goimports
工具。
goimports
作为 gofmt
的直接替代品,具有相同的所有选项。
英文:
It uses the goimports
tool.
goimports
works as a direct replacement for gofmt
, with all the same options.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论