Open WorkingDevel opened 3 years ago
Kotlin 1.4 supports trailing commas. They can be enabled in Idea's Settings->Editor->Code Style->Kotlin->Other.
It would be great if the plugin would respect the setting and generate trailing comma, so instead:
User( name = "", phone = "", address = "" )
it would generate
User( name = "", phone = "", address = "", )
You can add trailing comma without option. See here:
https://github.com/suusan2go/kotlin-fill-class/issues/43#issuecomment-777088870
Kotlin 1.4 supports trailing commas. They can be enabled in Idea's Settings->Editor->Code Style->Kotlin->Other.
It would be great if the plugin would respect the setting and generate trailing comma, so instead:
it would generate