forked from phoedos/pmd
[doc] CommentSize: mention the behavior change of #4369 explicitly
This commit is contained in:
@ -278,6 +278,9 @@ Contributors: [Lucas Soncini](https://github.com/lsoncini) (@lsoncini),
|
||||
* {% rule java/documentation/CommentContent %}: The properties `caseSensitive` and `disallowedTerms` are removed. The
|
||||
new property `fobiddenRegex` can be used now to define the disallowed terms with a single regular
|
||||
expression.
|
||||
* {% rule java/documentation/CommentSize %}: When determining the line-length of a comment, the leading comment
|
||||
prefix markers (e.g. `*` or `//`) are ignored and don't add up to the line-length.
|
||||
See also [pull request #4369](https://github.com/pmd/pmd/pull/4369).
|
||||
|
||||
**Java Error Prone**
|
||||
|
||||
|
@ -613,6 +613,9 @@ Related issue: [[core] Explicitly name all language versions (#4120)](https://gi
|
||||
* {% rule java/documentation/CommentContent %}: The properties `caseSensitive` and `disallowedTerms` are removed. The
|
||||
new property `fobiddenRegex` can be used now to define the disallowed terms with a single regular
|
||||
expression.
|
||||
* {% rule java/documentation/CommentSize %}: When determining the line-length of a comment, the leading comment
|
||||
prefix markers (e.g. `*` or `//`) are ignored and don't add up to the line-length.
|
||||
See also [pull request #4369](https://github.com/pmd/pmd/pull/4369).
|
||||
|
||||
**Java Error Prone**
|
||||
|
||||
|
@ -29,7 +29,7 @@ public class Foo {
|
||||
]]></code>
|
||||
</test-code>
|
||||
<test-code>
|
||||
<description>Line too long</description>
|
||||
<description>#4369 Line too long</description>
|
||||
<rule-property name="maxLineLength">5</rule-property>
|
||||
<expected-problems>1</expected-problems>
|
||||
<expected-linenumbers>5</expected-linenumbers>
|
||||
@ -37,7 +37,7 @@ public class Foo {
|
||||
//
|
||||
|
||||
|
||||
/* 4
|
||||
/* 12345
|
||||
* 5 way too long
|
||||
*/
|
||||
public class Foo {
|
||||
|
Reference in New Issue
Block a user