Configure Regexp checkstyle.

This commit is contained in:
Jeremy Wood 2023-09-06 13:41:41 -04:00
parent 405a033d85
commit 407dcb3125
No known key found for this signature in database
GPG Key ID: C5BAD04C77B91B4B
1 changed files with 6 additions and 4 deletions

View File

@ -20,6 +20,12 @@
<module name="Translation"/>
<module name="UniqueProperties"/>
<!-- Regexp -->
<module name="RegexpSingleline">
<property name="message" value="Line has trailing spaces."/>
<property name="format" value="\s+$"/>
</module>
<!-- Size Violations -->
<module name="FileLength">
<property name="max" value="2000"/>
@ -33,10 +39,6 @@
<module name="FileTabCharacter">
<property name="eachLine" value="true"/>
</module>
<module name="RegexpSingleline">
<property name="message" value="Line has trailing spaces."/>
<property name="format" value="\s+$"/>
</module>
<module name="TreeWalker">
<!-- Make suppression possible -->
<module name="SuppressWithNearbyCommentFilter">