(localYargs: Argv)
| 10 | |
| 11 | /** Build the parser for the pullapprove commands. */ |
| 12 | export function buildPullapproveParser(localYargs: Argv) { |
| 13 | return localYargs |
| 14 | .help() |
| 15 | .strict() |
| 16 | .demandCommand() |
| 17 | .command('verify', 'Verify the pullapprove config', {}, () => verify()); |
| 18 | } |