Why this matters
Ruby conventionally uses `snake_case` for method and variable titles. This improves consistency and makes code easier to read and maintain.
Verify that method and variable titles follow `snake_case` conventions, avoiding camelCase or PascalCase.
Ruby conventionally uses `snake_case` for method and variable titles. This improves consistency and makes code easier to read and maintain.
Side-by-side examples engineers can pattern-match during review.
def calculateTotal
finalValue = 0
enddef calculate_total
final_value = 0
enddef calculateTotal
finalValue = 0
enddef calculate_total
final_value = 0
endFrom the same buckets as this rule.