def DoSomething( ) : Unit = { // Noncompliant
// ...
}
Shared naming conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.
With default provided regular expression:
def DoSomething( ) : Unit = { // Noncompliant
// ...
}
def doSomething( ) : Unit = {
// ...
}