Describe the bug
"Flatten nested attribute set" code action removes comments from code.
To Reproduce
{
a = {
b =
# IMPORTANT COMMENT
2;
};
}
Put cursor on a and run "Flatten nested attribute set" code action.
Result:
Expected behavior
{
a.b =
# IMPORTANT COMMENT
2;
}
Describe the bug
"Flatten nested attribute set" code action removes comments from code.
To Reproduce
Put cursor on
aand run "Flatten nested attribute set" code action.Result:
Expected behavior