-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #16385: resolved JavadocTagContinuationIndentation bug #16518
Conversation
Github, generate report for JavadocTagContinuationIndentation/all-examples-in-one |
@romani please review reason for CI failure : /**
* Passes JUnit5's {@code ParameterizedTest} parameters to {@code @BeforeEach} and {@code AfterEach}
* methods.
*
* @see <a href="https://github.com/junit-team/junit5/issues/3157">Parameterized BeforeEach or
* AfterEach only</a>
*/
public class AfterBeforeParameterResolver implements BeforeEachMethodAdapter, ParameterResolver {
private @Nullable ParameterResolver parameterisedTestParameterResolver; Since this PR resolves this bug therefore a violation is raised here !! |
Report for JavadocTagContinuationIndentation/all-examples-in-one: |
Please send PR to them to fix it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Items
src/main/java/com/puppycrawl/tools/checkstyle/api/JavadocTokenTypes.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Items
...a/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTagContinuationIndentationCheck.java
Show resolved
Hide resolved
...vadoc/javadoctagcontinuationindentation/InputJavadocTagContinuationIndentationCheckHtml.java
Show resolved
Hide resolved
...vadoc/javadoctagcontinuationindentation/InputJavadocTagContinuationIndentationCheckHtml.java
Outdated
Show resolved
Hide resolved
Please add following cases: It is suspicious that we see in diff report only " see" tag, please add to Inputs example of validation for all other tags, just to be sure we do same for other. Too much duplicates in report, please next time do it for Example1 only. |
Is this the same issue and kind of same fix ? |
Yes the issue seems same, Although the implementation of fix is different. |
Your PR is more general fix , let proceed with your PR. |
12878a1
to
b598fc1
Compare
@Anmol202005 , supplemental is merged pleas rebase. |
48104e9
to
ec2ea30
Compare
@romani done. pls review |
pr raised : pgjdbc/pgjdbc#3566 |
@romani pls help with CI the antrun failure looks confusing |
just checkstyle violation. Do you need help with it ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
items:
...checkstyle/test/chapter7javadoc/rule713atclauses/InputJavaDocTagContinuationIndentation.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
item:
...vadoc/javadoctagcontinuationindentation/InputJavadocTagContinuationIndentationCheckHtml.java
Outdated
Show resolved
Hide resolved
doesn't look like a rule break /** `rt` tag name. */
public static final int RT_HTML_TAG_NAME = JavadocParser.RT_HTML_TAG_NAME; no violation on local |
272fce2
to
e36dd61
Compare
src/main/java/com/puppycrawl/tools/checkstyle/api/JavadocTokenTypes.java
Outdated
Show resolved
Hide resolved
Github, generate report for JavadocTagContinuationIndentation/Example1 |
Report for JavadocTagContinuationIndentation/Example1: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok to merge.
Thanks a lot
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good !
items
...a/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTagContinuationIndentationCheck.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving the changes!
As @romani said: #16518 (comment), We can simplify the Check's implementation in other PR.
To add support to detect for cases like @mahfouz72 mentioned at: #16518 (comment) with the current implementation of check, we will need to add REFERENCE
token to the Check, but if we're going to manually visit and check JAVADOC_TAG
children then I think it is not a good idea to add REFERENCE
token to the Check. Let's keep that edge case for separate PR, we will add support to detect it when we will change the implementation of the Check.
@Zopsss as you mentioned in #16518 (comment) /**
*
* @see <a
* href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html"> // violation
* JavadocTagContinuationIndentation: Checks the indentation of the continuation lines //violation
* </a> //violation
*/ |
Please also add the edge case Mahfouz mentioned in input files. Also add a comment that it is a false-negative and it'll be fixed in separate PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot!
We can support #16518 (comment) in separate issue.
In the next PR we can redesign this check by visiting JAVADOC_TAG
only and walk down to all of its childern
@Anmol202005, please create new issue. To make it explicit, that we noticed it, but decided to postpone resolution of it. CLI can use snapshot jar, if required, it is ok in this case |
4aeb627
to
226db4f
Compare
Github, generate report for JavadocTagContinuationIndentation/Example1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Items
...vadoc/javadoctagcontinuationindentation/InputJavadocTagContinuationIndentationCheckHtml.java
Outdated
Show resolved
Hide resolved
Report for JavadocTagContinuationIndentation/Example1: |
@romani please help with the CI failure |
I saw this error in other contributor's PR also. This is not related to your PR so you can ignore it |
Thanks @Zopsss , that's what i needed the help with. |
Xwiki can be ignored. |
@romani fixed it. removed a test case in the last push which lead to the failure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot
Fixes Issue #16385 and #16385
resolved JavadocTagContinuationIndentation Ignore indentation check when HTML tag break line
attention:
Block tags: Represented by JAVADOC_TAG
Inline tags: Represented by JAVADOC_INLINE_TAG