Allow '_' in parameter names although discouraged

This commit is contained in:
Trustin Lee 2012-11-12 13:37:35 +09:00
parent a70242ac89
commit 89a3f296d2
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@
<module name="ParenPad"/>
<module name="TypecastParenPad"/>
<module name="ParameterName">
<property name="format" value="^(?!arg[0-9])[a-z][a-zA-Z0-9]*$" />
<property name="format" value="^(?!arg[0-9])[_a-z][_a-zA-Z0-9]*$" />
</module>
</module>
</module>