As they pointed out, they conflated optional trailing commas and optional commas in general in the options, which means they can't read too much into those. I don't think anyone wants the latter, but I think the former would be really nice
Thread in Slack Conversation
All commas are optional is not implementable. It would be a breaking change to the language.
listOf(1
+2) == listOf(3) // now
listOf(1
+2) == listOf(1, 2) // after
Optional trailing commas FTW.