Skip to content

Files

Latest commit

 

History

History
22 lines (13 loc) · 542 Bytes

MemberName.md

File metadata and controls

22 lines (13 loc) · 542 Bytes

Pattern: Invalid instance variable name

Issue: -

Description

Validates identifiers for non-static fields.

Examples

This is an example of a configuration of the MemberName module to ensure that member identifiers begin with 'm', followed by an upper case letter, and then letters and digits:

<module name="MemberName">
  <property name="format" value="^m[A-Z][a-zA-Z0-9]*$"/>
</module>

Further Reading