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
Currently the formatting of code in PRs is not checked and therefore we have a lot of improperly formatted code on main (e.g., the spacing around the / operator is missing here).
This leads to a situation where some PRs happen to be overly bloated as they happen to correct the formatting of some code files that might not even be related to the PR.
TODO
add cargo fmt --check as a step to CI and let the action fail if it exits with non-0
apply proper formatting to the complete repository
The text was updated successfully, but these errors were encountered:
Currently the formatting of code in PRs is not checked and therefore we have a lot of improperly formatted code on
main
(e.g., the spacing around the/
operator is missing here).This leads to a situation where some PRs happen to be overly bloated as they happen to correct the formatting of some code files that might not even be related to the PR.
TODO
cargo fmt --check
as a step to CI and let the action fail if it exits with non-0The text was updated successfully, but these errors were encountered: