Skip to content

Commit ab541c6

Browse files
committed
Remove the --fix parameter from dart format, this is no longer supported.
1 parent 726b514 commit ab541c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/generate_sequence.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ final testFile = File('test/generated/sequence_test.dart');
1313

1414
/// Pretty prints and cleans up a dart file.
1515
Future<void> format(File file) async =>
16-
Process.run('dart', ['format', '--fix', file.absolute.path]);
16+
Process.run('dart', ['format', file.absolute.path]);
1717

1818
/// Generate the variable names.
1919
List<String> generateValues(String prefix, int i) =>

0 commit comments

Comments
 (0)