Add checkstyle regexp to validate case methods

This commit is contained in:
Kenzie Togami 2019-05-01 00:12:20 -07:00 committed by Kenzie Togami
parent 13a8c480e3
commit b419446109

View File

@ -57,6 +57,12 @@
<module name="WhitespaceAround">
<property name="tokens" value="ASSIGN"/>
</module>
<!-- Validate String.to(Lower|Upper)Case() calls include Locale argument -->
<module name="Regexp">
<property name="message" value="Case-conversion calls must include an explicit Locale"/>
<property name="format" value="(?!Character)\.to(Lower|Upper)Case\(\)"/>
<property name="illegalPattern" value="true"/>
</module>
</module>
<!-- Validate that command annotations are formatted correctly -->
<module name="RegexpMultiline">