sevntu-checkstyle / methods-distance

GNU Lesser General Public License v3.0
5 stars 13 forks source link

minor: fix violations from RequireEmptyLineBeforeAtClauseBlock #58

Closed josephmate closed 4 years ago

josephmate commented 4 years ago

According to https://checkstyle.sourceforge.io/config_javadoc.html#JavadocParagraph

There is one blank line between each of two paragraphs and one blank line before the at-clauses block if it is present.

Unfortunately, this check is not working yet in checkstyle, so many of these violations sneaked into the repository, but it's coming in https://github.com/checkstyle/checkstyle/pull/7932 .

I wrote a script to apply the missing newline violations from mvn verify. It is available here: https://github.com/josephmate/FixAtClauseError

romani commented 4 years ago

@josephmate , thanks a lot !!