suusan2go / kotlin-fill-class

Intellij plugin that provides intention action for empty constructor

Home Page:https://plugins.jetbrains.com/plugin/10942-kotlin-fill-class

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Do not add unnecessary trailing comma

t-kameyama opened this issue · comments

fun foo(a: Int, b: Int, c: Int, d: Int) = a + b + c + d

fun test() {
    foo(
        a = 0,
        b = 0, // trailing comma exists
    )
}

スクリーンショット 2022-08-31 16 34 18

スクリーンショット 2022-08-31 16 34 39

スクリーンショット 2022-08-31 16 34 49