atticus
12/20/2024, 11:41 AMclass Test(
val test1: String,
val test2: String, // comment
val test3: String
)
And I received the error: 'A comment in a 'value_parameter_list' is only allowed when placed on a separate line (cannot be auto-corrected).'
I want to write the code like this. How can I disable this rule?Paul Dingemans
12/20/2024, 3:13 PMatticus
12/23/2024, 8:01 AMktlint_standard_value-argument-comment = disabled
ktlint_standard_value-parameter-comment = disabled
but I still got error 'A comment in a 'value_parameter_list' is only allowed when placed on a separate line (cannot be auto-corrected).'Paul Dingemans
12/23/2024, 10:46 AMktlint_standard_type-parameter-comment
for the message 'A comment in a 'value_parameter_list' is only allowed when placed on a separate line
.atticus
12/26/2024, 2:12 PM