sharedOpts top-level property
Implementation
final Map<String, FigOption> sharedOpts = {
'output': FigOption(
name: ['--output', '-o'],
description: 'Format to print stdout in',
args: [
FigArg(
name: 'format',
suggestions: ['json', 'text'],
),
],
),
'shell': FigOption(
name: '--shell',
description: 'Force environment to be configured for a specified shell',
),
'unset': FigOption(
name: ['--unset', '-u'],
description: 'Unset variables instead of setting them',
),
};