Why is this an issue?

Shared naming conventions allow teams to collaborate efficiently.

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

For example, with the default provided regular expression ^[a-zA-Z][a-zA-Z0-9]*$, the function:

fun _DoSomething() {...} // Noncompliant

should be renamed to

fun DoSomething() {...}