Odd formatting choice for multiline functions' closing parenthesis
Open
bug
formatter
- Dominant language
- Go
- Stars
- 1.8k
- Forks
- 263
- PR merge metrics
- No merged PRs in 30d
Description
If I create a jsonnet file with:
```jsonnet
local asd(
x=1
) = {
hello: x,
};
asd(x=4)
```
It gets auto-formatted to:
```jsonnet
local asd(
x=1
) = {
hello: x,
};
asd(x=4)
```
Which is really weird.
Contributor guide
Assessment
This issue has not been assessed yet.