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

JavadocTagContinuationIndentation Ignore indentation check when HTML tag break line #16385

Closed
tangjiujun opened this issue Feb 21, 2025 · 3 comments

Comments

@tangjiujun
Copy link

I have read check documentation: https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html#JavadocTagContinuationIndentation
I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run


Test scenario

Test.java

/**
 *
 * @see reference <a href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html">
 *   JavadocTagContinuationIndentation: Checks the indentation of the continuation lines in block tags.</a> // violation raised
 *
 * @see <a href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html">
 *   JavadocTagContinuationIndentation: Checks the indentation of the continuation lines in block tags.</a>  // violation not raised
 */
class Test {}

checkstyle.xml

<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
        "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
        "https://checkstyle.org/dtds/configuration_1_3.dtd"><module name="Checker">
  <module name="TreeWalker">
    <module name="JavadocTagContinuationIndentation"/>
  </module>
</module>

Run: java -Duser.language=en -Duser.country=US -jar checkstyle-10.21.2-all.jar -c ./checkstyle.xml Test.java output below:

Starting audit...
[ERROR] /Users/tangjiujun/Downloads/Test.java:4: Line continuation have incorrect indentation level, expected level should be 4. [JavadocTagContinuationIndentation]
Audit done.
Checkstyle ends with 1 errors.

I expected the line 7 to raised an violation, but it seems to have ignored the case where there are only HTML tag

I also test then below java doc format, and It also didn't perform as expected.

/**
 *
 * @see <a
 *   href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html">
 *   JavadocTagContinuationIndentation: Checks the indentation of the continuation lines in block tags.
 *   </a>  // violation not raised
 */
class Test {}
@mohitsatr
Copy link
Contributor

im on it.

@mohitsatr
Copy link
Contributor

mohitsatr commented Feb 27, 2025

if no reference is present in @see tag, Parser does not place a DESCRIPTION Token in AST.

/**
 *
 * @see reference <a href="https://checkstyle.org/">
 *   Checks the indentation of the continuation lines in block tags.</a>
 *
 * @see <a href="https://checkstyle.org/checks/javadoc/javadoctagcontinuationindentation.html">
 *   Checks the indentation of the continuation lines in block tags.</a>
 */
public class Test {


|--JAVADOC_TAG -> JAVADOC_TAG [23:6]
|   |--SEE_LITERAL -> @see [23:6]
|   |--WS ->   [23:10]
|   |--REFERENCE -> REFERENCE [23:11]
|   |   `--PACKAGE_CLASS -> reference [23:11]
|   |--WS ->   [23:20]
|   `--DESCRIPTION -> DESCRIPTION [23:21]
|       |--HTML_ELEMENT -> HTML_ELEMENT [23:21]
|       |   `--HTML_TAG -> HTML_TAG [23:21]


|--JAVADOC_TAG -> JAVADOC_TAG [26:6]
|   |--SEE_LITERAL -> @see [26:6]
|   |--WS ->   [26:10]
|   |--HTML_ELEMENT -> HTML_ELEMENT [26:11]
|   |   `--HTML_TAG -> HTML_TAG [26:11]
|   |       |--HTML_ELEMENT_START -> HTML_ELEMENT_START [26:11]
 ....

|   |--NEWLINE -> \n [27:77]                    // NOTICE no DESCRIPTION TAG
|   `--WS ->      [28:0]
|   |       `--EOF -> <EOF> [28:4]

mohitsatr added a commit to mohitsatr/checkstyle that referenced this issue Mar 6, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 10, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 10, 2025
mohitsatr added a commit to mohitsatr/checkstyle that referenced this issue Mar 11, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 14, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 14, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 14, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 14, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 21, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 23, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Mar 25, 2025
@romani
Copy link
Member

romani commented Mar 27, 2025

Fixed by #16518

@romani romani closed this as completed Mar 27, 2025
@github-actions github-actions bot added this to the 10.22.0 milestone Mar 27, 2025
@romani romani added the bug label Mar 27, 2025
Abdelrhmansersawy pushed a commit to Abdelrhmansersawy/checkstyle that referenced this issue Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
3 participants