Hi, I'm wondering whether it is possible to exclude a companion object? Given: ```scala object Animal { def apply: Animal = ??? } class Animal { ??? } ``` Is it possible just to exclude the object Animal and not the class? I can't make it work with the exclusion rules.