This rule is defined by the following XPath expression:
//VariableDeclaratorId [starts-with(@Image, 'm_')] [not (../../../FieldDeclaration)]
Example:
public class Foo { private int m_foo; // OK public void bar(String m_baz) { // Bad int m_boz = 42; // Bad } }