staticcheck
可用于代码静态检查,发现未被使用的变量、类型和函数等,以及不规范的代码:https://github.com/dominikh/go-tools。
1 | staticcheck --unused.whole-program=true -- ./... |
在 VSCode 中以 root 权限进行 debug
Debug Golang in VS Code in Linux as root
查看编译二进制文件使用的 Go 版本
1 | go version /usr/local/bin/kubelet |