Formatter alignment of function closing parenthesis unexpected
Open
bug
formatter
- Dominant language
- Jsonnet
- Stars
- 7.6k
- Forks
- 475
- PR merge metrics
- No merged PRs in 30d
Description
consider:
```jsonnet
local myfunc(
name = 'foo',
) = {
name: name
};
myfunc()
```
jsonnetfmt converts this to:
```jsonnet
local myfunc(
name='foo',
) = {
name: name,
};
myfunc()
```
Why did it add the indentation before the close parenthesis?
Contributor guide
Assessment
This issue has not been assessed yet.