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: ^(_|[a-zA-Z0-9]+)$
:
func execute_all() {
...
}
Compliant Solution
func executeAll() {
...
}