Package Options
Configuration block that allows setting some options for specific packages matched by matchingRegex.
Example:
<configuration>
<perPackageOptions>
<packageOptions>
<matchingRegex>.*api.*</matchingRegex>
<suppress>false</suppress>
<reportUndocumented>false</reportUndocumented>
<skipDeprecated>false</skipDeprecated>
<documentedVisibilities>
<visibility>PUBLIC</visibility>
<visibility>PROTECTED</visibility>
</documentedVisibilities>
</packageOptions>
</perPackageOptions>
</configuration>Content copied to clipboard
Properties
Link copied to clipboard
@Parameter(property = "visibility" )
List of visibility modifiers that should be documented.
Link copied to clipboard
Link copied to clipboard
Regular expression that is used to match the package.
Link copied to clipboard
Whether to emit warnings about visible undocumented declarations, that is declarations from this package and without KDocs, after they have been filtered by documentedVisibilities.
Link copied to clipboard
Whether to document declarations annotated with Deprecated.