checkCommandOptions top-level property

List<Option> checkCommandOptions
final

Implementation

final List<Option> checkCommandOptions = [

  Option(
    name: '--incremental',
    description: 'Only format files when they change. This may alternatively be specified in the configuration file',
    args: [
      Arg(
      name: 'incremental',
      suggestions: [

        FigSuggestion(name: 'true'),
        FigSuggestion(name: 'false')
      ],
      isOptional: true
    )
    ]
  ),
  ...configurableCommandOptions
];