yaml_variable_scanner 0.0.6 yaml_variable_scanner: ^0.0.6 copied to clipboard
YAML Variable Scanner, used to scan multiple files for text that can use YAML variables.
import 'package:args/command_runner.dart';
import 'src/commands/check.dart';
/// The root command runner of the `example` command.
/// To learn about it and its subcommands,
/// run `dart run example --help`.
final class ExampleCommandRunner extends CommandRunner<int> {
ExampleCommandRunner()
: super(
'example',
'Scans multiple files for text that can use YAML variables.',
) {
addCommand(CheckCommand());
}
}