#128 Provide a task option to suppress an entire p...
# dokka
u
#128 Provide a task option to suppress an entire package [Kotlin/dokka] Issue created by codeprogression I have a package that I would like to prevent from generating into the javadocs/kdocs. I added
@suppress
to all of the class files within the packages but the package still shows up in the javadoc/kdoc index and generates a package page with no methods. It would be great to have a directive in the dokka tasks for excluding the package.
Copy code
dokka {
  ...
  suppressPackages = ['com.example.internal.*', 'com.example.secret']
  ...
}
Something like that would allow me to generate external vs internal documentation. Thanks!