You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps this could be an opt-in feature using a CLI option. Because there's no guarantee that user code in the hub package (outside the messages module) would be compilable.
This part is a little off topic. I guess something similar could be considered for flutter analyze. Maybe some API from the dart SDK could be used instead of spinning up a shell to run flutter analyze. Fortunately, users can exclude paths using analyzer config options.
The text was updated successfully, but these errors were encountered:
I think we can apply cargo fmt every time after message generation, if we can only target the messages folder in Dart and Rust. We are open for any PR for that.
Let me share that I'm busy at the moment, and cannot really write code for that. However, if there is any PR for that, I'd be happy to review and merge it into the main branch, also publishing a new Rinf version.
I'm setting up some CI for my app, and
cargo fmt --check
fails on numerous files found innative/hub/src/messages/
.Unfortunately, rustfmt's
ignore
option is unstable and requires nightly toolchain(s).I was wondering if running rustfmt on just the
hub
package is feasible influtter_package/bin/src/message.dart
Perhaps this could be an opt-in feature using a CLI option. Because there's no guarantee that user code in the hub package (outside the messages module) would be compilable.
This part is a little off topic. I guess something similar could be considered for
flutter analyze
. Maybe some API from the dart SDK could be used instead of spinning up a shell to runflutter analyze
. Fortunately, users can exclude paths using analyzer config options.The text was updated successfully, but these errors were encountered: