(cmd *cobra.Command)
| 96 | } |
| 97 | |
| 98 | func commandInputSchemaExcludesAsMember(cmd *cobra.Command) bool { |
| 99 | if cmd == nil { |
| 100 | return false |
| 101 | } |
| 102 | return cmd.Root() == cmd || |
| 103 | commandSkipsAuth(cmd) || |
| 104 | isNoAuthCommand(cmd) || |
| 105 | commandHasTopLevelName(cmd, "completion") |
| 106 | } |
| 107 | |
| 108 | func commandInputSchemaIncludesFlag(flag jsonCommandFlag) bool { |
| 109 | switch flag.Name { |
no test coverage detected