CheckCommand constructor

CheckCommand(
  1. Tuneup tuneup
)

Implementation

CheckCommand(Tuneup tuneup)
    : super(tuneup, 'check', 'analyze all the source code in the project') {
  argParser.addFlag('ignore-infos',
      negatable: false, help: 'Ignore any info level issues.');
  argParser.addFlag('fail-on-todos',
      help: 'Fail if any TODOs are found.',
      negatable: false,
      defaultsTo: false);
  argParser.addFlag('preview-dart-2',
      help: 'Run the analysis server opt-ed into Dart 2.');
  argParser.addFlag('use-cfe',
      help: 'Run the analysis server using the new common front end.');
  argParser.addFlag('use-fasta-parser',
      help: 'Run the analysis server using the Fasta parser.');
}