File tree 1 file changed +11
-3
lines changed 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,12 @@ scripts:
126
126
127
127
format :
128
128
description : Format code.
129
- run : dart format --fix --line-length 160 .
129
+ # while we wait for https://github.com/dart-lang/dart_style/issues/864
130
+ run : >-
131
+ find lib test integration_test -name '*.dart' -not -name '*.g.dart' -not -name '*.realm.dart' -not -name 'realm_bindings.dart'
132
+ | xargs dart format --fix --line-length 160
133
+ exec :
134
+ concurrency : 1 # only one project at a time to keep output sane
130
135
131
136
upgrade :
132
137
description : Upgrade all dependencies.
@@ -140,8 +145,11 @@ scripts:
140
145
melos publish --dry-run
141
146
142
147
lint:format :
143
- run : dart format --fix --line-length 160 --output none --set-exit-if-changed .
144
- exec :
148
+ # while we wait for https://github.com/dart-lang/dart_style/issues/864
149
+ run : >-
150
+ find lib test integration_test -name '*.dart' -not -name '*.g.dart' -not -name '*.realm.dart' -not -name 'realm_bindings.dart'
151
+ | xargs dart format --fix --line-length 160 --output none --set-exit-if-changed
152
+ exec :
145
153
concurrency : 1 # only one project at a time to keep output sane
146
154
147
155
lint:pana :
You can’t perform that action at this time.
0 commit comments