Why this matters
Consistent naming conventions improve readability and maintainability. Method and property titles should follow PascalCase.
Consistent naming conventions improve readability and maintainability. Method and property titles should follow PascalCase.
Consistent naming conventions improve readability and maintainability. Method and property titles should follow PascalCase.
Side-by-side examples engineers can pattern-match during review.
public int doSomething() {...} // Noncompliantpublic int DoSomething() {...}public int doSomething() {...} // Noncompliantpublic int DoSomething() {...}From the same buckets as this rule.