Why is this an issue?

Shared naming conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.

Noncompliant code example

With default provided regular expression:

def DoSomething( ) : Unit = { // Noncompliant
   // ...
}

Compliant solution

def doSomething( ) : Unit = {
   // ...
}