mirror of
https://github.com/valitydev/java-checkstyle-config.git
synced 2024-11-06 01:35:20 +00:00
Add 'private final .*' to LineLength ignorePattern
This commit is contained in:
parent
dc0af96108
commit
c18e9a930d
@ -45,7 +45,9 @@
|
|||||||
<module name="LineLength">
|
<module name="LineLength">
|
||||||
<property name="fileExtensions" value="java"/>
|
<property name="fileExtensions" value="java"/>
|
||||||
<property name="max" value="120"/>
|
<property name="max" value="120"/>
|
||||||
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
|
<!-- Added 'private final .*' not to mess with long bean names -->
|
||||||
|
<property name="ignorePattern"
|
||||||
|
value="^package.*|^import.*|^ *private final .*"/>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
<module name="TreeWalker">
|
<module name="TreeWalker">
|
||||||
|
Loading…
Reference in New Issue
Block a user