[tool] Adds a fix command (#6512)

This commit is contained in:
stuartmorgan
2022-09-28 16:51:15 -04:00
committed by GitHub
parent 92330dbd2c
commit 70ff6821af
4 changed files with 135 additions and 0 deletions

View File

@ -17,6 +17,7 @@ import 'dependabot_check_command.dart';
import 'drive_examples_command.dart';
import 'federation_safety_check_command.dart';
import 'firebase_test_lab_command.dart';
import 'fix_command.dart';
import 'format_command.dart';
import 'license_check_command.dart';
import 'lint_android_command.dart';
@ -61,6 +62,7 @@ void main(List<String> args) {
..addCommand(DriveExamplesCommand(packagesDir))
..addCommand(FederationSafetyCheckCommand(packagesDir))
..addCommand(FirebaseTestLabCommand(packagesDir))
..addCommand(FixCommand(packagesDir))
..addCommand(FormatCommand(packagesDir))
..addCommand(LicenseCheckCommand(packagesDir))
..addCommand(LintAndroidCommand(packagesDir))