SetupCommand constructor

SetupCommand()

Implementation

SetupCommand() {
  argParser
    ..addFlag(
      'reset',
      abbr: 'r',
      negatable: false,
      help: 'Reset all configuration settings.',
    )
    ..addOption(
      'clients',
      abbr: 'c',
      help: 'Initialize client directories (comma-separated list).',
    )
    ..addFlag(
      'notify',
      abbr: 'n',
      negatable: false,
      help: 'Configure Slack notifications only.',
    );
}