Hello, I’m using ktlint 0.48.x, and found that
standard:trailing-comma-*
rules strongly depend on execution of
standard:wrapping
rule . (this means that if wrapping is disabled, trailing-comma rules are disabled too)
Is it right that this dependency was created for the following example?
processFoo(Foo(
a = 3,
b = 4,
),) // it's weird to insert "," between unwrapped (continuated) parenthesis
And how about add some back link for this
dependencies in trailing-comma rule documentation?
(IMHAO it seems to be quite confusing for some users)