run method
Executes the command using the provided command-line args.
Implementation
@override
Future<void> run(List<String> args) async {
LoggerService.section(
'Validating project',
);
final config = await ConfigService.load();
InitValidator.validate(
config,
);
LoggerService.blank();
LoggerService.success(
'Project validation complete.',
);
LoggerService.blank();
}