You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Detect unused if a module declares the plugin id("kotlin-parcelize") and doesn't use it.
Describe the solution you'd like
Raise a suggestion to remove kotlin-parcelize if the annotation @Parcelize is not used.
The text was updated successfully, but these errors were encountered:
Sure! But I'm not sure how to contribute a test. I was checking for tests related with the kapt advice but I couldn't find any. And even removing code related with the kapt advice ./gradlew test is still green.
Is there any similar test so I can follow the pattern?
Hm let me restate. You really can't contribute a failing test because the plugin wouldn't have any reason to fail in the presence of this unused plugin. So what you could do is contribute a test that would fail if that feature existed.
If you take a look at AnnotationProcessorSpec, you'll see a bunch of tests relating to kapt.
Is your feature request related to a problem? Please describe.
Detect unused if a module declares the plugin
id("kotlin-parcelize")
and doesn't use it.Describe the solution you'd like
Raise a suggestion to remove
kotlin-parcelize
if the annotation@Parcelize
is not used.The text was updated successfully, but these errors were encountered: