i am trying to disable a rule that is defined as `...
# ktlint
j
i am trying to disable a rule that is defined as
Copy code
class ModifierComposedCheck :
    KtlintRule(
        id = "compose:modifier-composed-check",
        editorConfigProperties = setOf(customModifiers),
    ),
I have attempted to use
Copy code
additionalEditorconfig.set(
            mapOf(
                "compose:modifier-composed-check" to "disabled"
            )
        )
or putting
compose_modifier-composed-check = disabled
into my
.editorConfig
and neither seems to be working. is there a proper way to disable custom rules like this?