-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code cleanups #43
Code cleanups #43
Conversation
Run `cargo fmt` with the default rules. This gives us a baseline to be able to require properly formatted code for future changes. Signed-off-by: David Brown <[email protected]>
Format code with default rules. Provides a baseline for upcoming work to be able to require properly formatted code. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I trust rustfmt. I also don't see anything out of whack.
Format the source according to the default rules. This provides a baseline for future changes to require well-formatted source. Signed-off-by: David Brown <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks fine to me, clippy and rustfmt are great tools to keep the code uniform in feel and look for sure, nice!
Ensure the formatting is up to date before going through the rest of the build. Signed-off-by: David Brown <[email protected]>
This contains various code cleanups suggested by rustfmt. This is its own PR as these changes are unlikely to have any semantic difference, and should be easier to review. Suggestions from clippy will be in another change.