baseOptions top-level property
Implementation
final List<Option> baseOptions = [
Option(
name: ['--help', '-h'],
description:
'Display help for the given command. When no command is given display help for the list command'),
Option(
name: ['--version', '-V'],
description: 'Display this application version'),
Option(name: ['--quiet', '-q'], description: 'Do not output any message'),
Option(
name: ['--verbose', '-vv', '-vvv', '-v'],
description:
'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug'),
Option(name: '--ansi', description: 'Force ANSI output'),
Option(name: '--no-ansi', description: 'Disable ANSI output'),
Option(
name: ['--no-interaction', '-n'],
description: 'Do not ask any interactive question')
];