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 4, 2022. It is now read-only.
It would be good to keep blank lines in the original file after the formatting has been applied, or at list to control this behaviour with a rule. Is it possible?
For example:
message Machine {
// Unique ID of the machine
string id = 1;
// Human readable name of the machine
string name = 2;
// Description of the machine
string description = 4;
// Machine image preview
string preview_image_url = 5;
}
Get formatted to the following, losing all blank line separation between the fields of the messages.
message Machine {
// Unique ID of the machine
string id = 1;
// Human readable name of the machine
string name = 2;
// Description of the machine
string description = 4;
// Machine image preview
string preview_image_url = 5;
}