Find a way to fail build on cases of //violation .... usage inside javadoc.
bad
/**
* This Javadoc contains unclosed tag.
* <code>unclosed 'code' tag<code> // violation 'Unclosed HTML tag found: <code>'
*/
good:
// violation 3 lines below 'Unclosed HTML tag found: <code>'
/**
* This Javadoc contains unclosed tag.
* <code>unclosed 'code' tag<code>
*/
Some regexp Check should help us to do this.
All Inputs should comply with this rule.
In scope of this issue we should make some Check instance, fix few, if there is alot and make suppression list to let massive update later on (we can create new issue, mark it as good first issue).
Find a way to fail build on cases of
//violation ....usage inside javadoc.bad
good:
Some regexp Check should help us to do this.
All Inputs should comply with this rule.
In scope of this issue we should make some Check instance, fix few, if there is alot and make suppression list to let massive update later on (we can create new issue, mark it as good first issue).