CleanCommand constructor

CleanCommand()

Implementation

CleanCommand() {
  argParser.addMultiOption(
    "exclusions",
    valueHelp: 'glob',
    help:
        'Exclude files with names matching the given glob. This option can be repeated.',
  );
  argParser.addOption(
    "exclusions-file",
    valueHelp: 'file',
    help: 'Exclude files with names matching the given globs in the file.',
  );
}