I'm using the Gradle Dokka plugin version 0.9.16-eap-1 to generate documentation for some Kotlin code.
I'm a no broken windows kind of person and consequently a bit frustrated that the plugin generates a tonne of messages for classes for which I haven't explicitly documented an overridden method which is adequately documented in the base class, eg:
package com.foo
/**
* A silly class to demonstrate silliness.
*/
class Bar : java.io.InputStream() {
override fun read() = -1
override fun toString() = "BAZ!"
}
For this class Dokka reprimands:
No documentation for com.foo.Bar$read() (Bar.kt:6)
No documentation for com.foo.Bar$toString() (Bar.kt:7)
This is slightly tedious, as I don't want to have to redundantly redundantly document everything with copy-paste documentation.
Looking at the Dokka README.md, the only relevant configuration options I see are:
dokka {
...
// Emit warnings about not documented members. Applies globally, also can be overridden by packageOptions
reportNotDocumented = true
...
// Allows to customize documentation generation options on a per-package basis
// Repeat for multiple packageOptions
packageOptions {
...
reportUndocumented = true // Emit warnings about not documented members
...
}
}
But I don't want to suppress warnings about undocumented stuff. That would be just as bad. All I want to do is suppress warnings about undocumented override
funs on the assumption I'm deliberately not repeating myself not repeating myself.
Does anyone know if there's an option to switch off the warnings just for override fun
?
For your specific case use @suppress
This way you will exclude the overridden function from the documentation completely.
However, if you want to retain a reference to the API call in the documentation simply add an empty one-line docstring close to the element (it will disable the warning):