mrmans0n / compose-rules

Lint rules for ktlint/detekt aimed to contribute to a healthier usage of Compose. Actively maintained and evolved fork of the Twitter Compose rules.
https://mrmans0n.github.io/compose-rules
Other
550 stars 21 forks source link

Add safe accessors + let to the content emission counters #194

Closed mrmans0n closed 7 months ago

mrmans0n commented 7 months ago

Allows for code similar to this to be counted towards emissions at the top level.

@Composable
fun A(title: String?, subtitle: String?) {
  title?.let { Text(it) }
  subtitle?.let { Text(it) }
}

Fixes #191