I am working on a scala project in IntelliJ and want to clean up my code. For this, I am looking for a way in which I can get a list of unused methods within my project.
This link didn't answer my question. It is for Java and not for Scala. Finding unused methods in IntelliJ (excluding tests)
Analyze -> Inspect Code for Scala in IntelliJ has an option to select unused symbol but I am unable to drill it down to only check methods.
val
s andvar
s are at least as important as unuseddef
s. – Psalterium