How to disable checkstyle JavaDoc validation for constructors?
I see that http://checkstyle.sourceforge.net/config_javadoc.html#JavadocMethod states clearly that it "Checks the Javadoc of a method or constructor", however I need to exclude constructors and leave only methods.
CTOR_DEF
,METHOD_DEF
andANNOTATION_FIELD_DEF
. Of these 3,CTOR_DEF
is responsible for Constructors - so you should remove only that and put the other two viz.METHOD_DEF
andANNOTATION_FIELD_DEF
instead of justMETHOD_DEF
. – Niche