appKODE / detekt-rules-compose

A collection of Detekt rules for Jetpack Compose
MIT License
136 stars 8 forks source link

Private Composable Previews and UnusedPrivateMember conflict #26

Closed juliocbcotta closed 1 year ago

juliocbcotta commented 1 year ago

When I enable PublicComposablePreview and set all my previews to private this causes UnusedPrivateMember to be triggered. How to avoid that?

BraisGabin commented 1 year ago

Like this: https://detekt.dev/docs/introduction/compose/

juliocbcotta commented 1 year ago

Thank you, maybe we could add a warning in the readme about it?

dimsuz commented 1 year ago

Yes, I think it could help. I'll add a link to the page @BraisGabin posted, it contains some nice tips on setting up Detekt for Compose.