Piotr Chowaniec
Piotr Chowaniec

Reputation: 1230

Sonarqube - documented API configuration

I use sonarqube 4.3.2 for java project. Is there any way to configure sonarqube settings when checking javadoc for public API? Right now all uncodumented public classes/methods/constructors are checked for javadoc. I would like to skip checking on default constructors and setters/getters.

Upvotes: 1

Views: 375

Answers (1)

benzonico
benzonico

Reputation: 10833

By default undocumentedAPI check should skip setters and getters.

There are unfortunately no configuration available for this rule, so only way is to deactivate it alltogether or mark issues as false positive.

Upvotes: 1

Related Questions