We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
consider:
local myfunc( name = 'foo', ) = { name: name }; myfunc()
jsonnetfmt converts this to:
local myfunc( name='foo', ) = { name: name, }; myfunc()
Why did it add the indentation before the close parenthesis?