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
{{ message }}
This repository was archived by the owner on Mar 19, 2024. It is now read-only.
When using the formatting tool (ctrl+shift+c), if there are any lines that consist only of whitespace, the entire line is removed. E.g. starting with
fn foo() {}
fn main() {}
with spaces or tabs on the second line, you end up with
fn foo() {}
fn main() {}
What should happen instead is that the trailing whitespace is removed, but the line isn't. Normal Rustfmt doesn't have this problem, so it seems to be an issue specific to the Atom plugin.