Go言語のspf13/cobraでエラーした時にusage/helpが出ないようにするにはSilenceUsage: trueを使えば良い
#Go言語
#golang
code:go
var myCmd = &cobra.Command{
...
SilenceUsage: true,
...