public void DoSomething(){...}
Shared naming conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.
With provided regular expression ^[a-z][a-zA-Z0-9_]*$
:
public void DoSomething(){...}
public void doSomething(){...}