Why this matters
Identifiers (such as variable titles and method titles) should follow the lowerCamelCase naming convention. This improves consistency and readability.
Ensure that identifiers such as variables and method titles are written in lowerCamelCase (e.g., `myVariable`). Avoid using other naming conventions.
Identifiers (such as variable titles and method titles) should follow the lowerCamelCase naming convention. This improves consistency and readability.
Side-by-side examples engineers can pattern-match during review.
// (no example provided)var count = 3;
HttpRequest httpRequest;
void align(bool clearItems) {
// ...
}var count = 3;
HttpRequest httpRequest;
void align(bool clearItems) {
// ...
}From the same buckets as this rule.