Skip to content
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

Merged
merged 1 commit into from
Mar 27, 2025

Conversation

Anmol202005
Copy link
Contributor

@Anmol202005 Anmol202005 commented Mar 10, 2025

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

@Anmol202005
Copy link
Contributor Author

Github, generate report for JavadocTagContinuationIndentation/all-examples-in-one

@Anmol202005
Copy link
Contributor Author

Anmol202005 commented Mar 10, 2025

@romani please review

reason for CI failure :
https://github.com/pgjdbc/pgjdbc/blob/master/pgjdbc/src/testFixtures/java/org/postgresql/test/impl/AfterBeforeParameterResolver.java#L26

/**
* 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 !!

@romani
Copy link
Member

romani commented Mar 12, 2025

reason for CI failure :

Please send PR to them to fix it.

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Items

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Items

@romani
Copy link
Member

romani commented Mar 12, 2025

Please add following cases:
Next line start on 0 indentation - https://checkstyle-diff-reports.s3.us-east-2.amazonaws.com/e9b4c87c493b6e7314b2f3908a4c406e9e3d8db8_2025142827/reports/diff/Hbase/index.html#A1

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.

@romani
Copy link
Member

romani commented Mar 12, 2025

Is this the same issue and kind of same fix ?
#16486

@Anmol202005
Copy link
Contributor Author

Is this the same issue and kind of same fix ? #16486

Yes the issue seems same, Although the implementation of fix is different.

@romani
Copy link
Member

romani commented Mar 13, 2025

Your PR is more general fix , let proceed with your PR.

@Anmol202005 Anmol202005 force-pushed the Style branch 2 times, most recently from 12878a1 to b598fc1 Compare March 15, 2025 12:05
@romani
Copy link
Member

romani commented Mar 15, 2025

@Anmol202005 , supplemental is merged pleas rebase.

@Anmol202005 Anmol202005 force-pushed the Style branch 2 times, most recently from 48104e9 to ec2ea30 Compare March 15, 2025 14:18
@Anmol202005
Copy link
Contributor Author

@romani done. pls review

@Anmol202005
Copy link
Contributor Author

Please send PR to them to fix it.

pr raised : pgjdbc/pgjdbc#3566

@Anmol202005
Copy link
Contributor Author

@romani pls help with CI the antrun failure looks confusing

@romani
Copy link
Member

romani commented Mar 15, 2025

https://ci.appveyor.com/project/Checkstyle/checkstyle/builds/51703028/job/t8aqudkl0060ao12#L111

[ERROR] [checkstyle] [ERROR] C:\projects\checkstyle\src\main\java\com\puppycrawl\tools\checkstyle\api\JavadocTokenTypes.java:1201: Line continuation have incorrect indentation level, expected level should be 4. [JavadocTagContinuationIndentation]

just checkstyle violation. Do you need help with it ?

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

items:

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

item:

@Anmol202005
Copy link
Contributor Author

Anmol202005 commented Mar 16, 2025

just checkstyle violation. Do you need help with it ?

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

@Anmol202005 Anmol202005 force-pushed the Style branch 3 times, most recently from 272fce2 to e36dd61 Compare March 16, 2025 11:03
@Anmol202005
Copy link
Contributor Author

Anmol202005 commented Mar 16, 2025

@romani @Zopsss
antrun failure looks suspicious. i tried changing the line no. of the statement that was getting flagged and it still flags the same line no. as previous.

please tell if i'm doing anything wrong from my side.

@Anmol202005
Copy link
Contributor Author

Github, generate report for JavadocTagContinuationIndentation/Example1

Copy link
Member

@romani romani left a 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

Copy link
Member

@mahfouz72 mahfouz72 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good !

items

Copy link
Member

@Zopsss Zopsss left a 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.

@Anmol202005
Copy link
Contributor Author

@Zopsss as you mentioned in #16518 (comment)
this PR now supports this case also:

/**
    *
    * @see <a 
    * href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html"> // violation
    * JavadocTagContinuationIndentation: Checks the indentation of the continuation lines //violation
    * </a> //violation
    */

@Zopsss
Copy link
Member

Zopsss commented Mar 23, 2025

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.

Copy link
Member

@mahfouz72 mahfouz72 left a 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

@romani
Copy link
Member

romani commented Mar 25, 2025

@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

@Anmol202005
Copy link
Contributor Author

@romani
Issue raised: #16656

@Anmol202005 Anmol202005 force-pushed the Style branch 2 times, most recently from 4aeb627 to 226db4f Compare March 25, 2025 13:13
@romani
Copy link
Member

romani commented Mar 25, 2025

Github, generate report for JavadocTagContinuationIndentation/Example1

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Items

@Anmol202005
Copy link
Contributor Author

@romani please help with the CI failure

@Zopsss
Copy link
Member

Zopsss commented Mar 26, 2025

@Anmol202005
Copy link
Contributor Author

https://app.circleci.com/pipelines/github/checkstyle/checkstyle/31835/workflows/29ede9d5-a25a-4f50-8bf5-8e2c9f35f9f6/jobs/853875?invite=true#step-103-269312_78

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.

@romani
Copy link
Member

romani commented Mar 26, 2025

Xwiki can be ignored.
Pitest has to be fixed. It use to be green few days ago, not sure how we missed test coverage , as I only requested extension on Inputs

@Anmol202005
Copy link
Contributor Author

Xwiki can be ignored. Pitest has to be fixed. It use to be green few days ago, not sure how we missed test coverage , as I only requested extension on Inputs

@romani fixed it. removed a test case in the last push which lead to the failure.

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot

@romani romani merged commit 7ee614f into checkstyle:master Mar 27, 2025
114 of 115 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants