Hi guys, I am sorry, I hope I am not troubling you...
# ktlint
n
Hi guys, I am sorry, I hope I am not troubling you with this simple question. How can I suppress the "compose:modifier-missing-check" on composables that emit dialogs? I don't think there is a modifier to expose for dialogs. 🙇‍♂️
z
@Suppress(“ktlint:compose:modifier-missing-check”)
doesn’t do it?
n
Is there a way to do it in the .editorconfig? Like all composables with names ending in "Dialog"?
z
You might be able to do it with a lint baseline file but I’ve never heard of using editorconfig for ktlint suppressions. It might be possible though idk
n
Thank you for the lead! I will check how to use Baseline File.