Starting with this code:
{
x = {
y = 2;
z = 5;
};
}
If we run the flatten code action, this code is generated:
(note the trailing whitespace)
On the other hand, if we start with the flattened version:
The pack code action generates this:
{
x = {
y = 2;
z = 5;
};
}
I'd expect (and hope) it would be fairly simple to correct this. I haven't taken a deep look at the code, but if I get the go-ahead and a little guidance, I can look at making a PR.
Starting with this code:
If we run the flatten code action, this code is generated:
(note the trailing whitespace)
On the other hand, if we start with the flattened version:
The pack code action generates this:
I'd expect (and hope) it would be fairly simple to correct this. I haven't taken a deep look at the code, but if I get the go-ahead and a little guidance, I can look at making a PR.