Why is this an issue?

Shared naming conventions allow teams to collaborate efficiently.

This rule raises an issue when a method name does not match a provided regular expression.

For example, with the default provided regular expression, the following method:

def methodName # Noncompliant
   expr..
end

should be renamed to

def method_name
   expr..
end