| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import '../base/common.dart'; |
| import '../base/file_system.dart'; |
| import '../base/process.dart'; |
| import '../runner/flutter_command.dart'; |
| class FormatCommand extends FlutterCommand { |
| final String name = 'format'; |
| List<String> get aliases => const <String>['dartfmt']; |
| final String description = 'Format one or more dart files.'; |
| String get invocation => '${runner.executableName} $name <one or more paths>'; |
| Future<Null> runCommand() async { |
| if (argResults.rest.isEmpty) { |
| 'No files specified to be formatted.\n' |
| 'To format all files in the current directory tree:\n' |
| '${runner.executableName} $name .\n' |
| final String dartfmt = fs.path.join(Cache.flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', 'dartfmt'); |
| final List<String> cmd = <String>[dartfmt, '-w']..addAll(argResults.rest); |
| final int result = await runCommandAndStreamOutput(cmd); |
| throwToolExit('Formatting failed: $result', exitCode: result); |