Skip to content

Commit e17488e

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/generate_bindings.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class Type {
184184

185185
/// Pretty prints and cleans up a Dart file.
186186
Future<void> format(File file) async =>
187-
Process.run('dart', ['format', '--fix', file.absolute.path]);
187+
Process.run('dart', ['format', file.absolute.path]);
188188

189189
void generateWarning(StringSink out) {
190190
out.writeln('// AUTO-GENERATED CODE: DO NOT EDIT');

0 commit comments

Comments
 (0)