commonCommandSpecificOptions top-level property

List<FigOption> commonCommandSpecificOptions
final

Implementation

final List<FigOption> commonCommandSpecificOptions = [
  FigOption(
    name: ['--case-converting-strategy'],
    description: "Specify the strategy for converting command names' case",
    args: [
      FigArg(
        name: 'strategy',
        defaultValue: 'keepOriginal',
        suggestions: [
          FigSuggestion(name: 'keepOriginal'),
          FigSuggestion(name: 'toSnakeCase'),
          FigSuggestion(name: 'toKebabCase'),
        ],
      ),
    ],
    priority: 55,
  ),
  FigOption(
    name: ['--sake-app-prebuilt-binary-path', '-b'],
    description: 'Specify the path to the prebuilt SakeApp binary',
    args: [
      FigArg(
        name: 'path',
        template: 'filepaths',
      ),
    ],
    priority: 55,
  ),
];